About 1,710,000 results
Open links in new tab
  1. How do I get webdriverIO to use a specified chromedriver

    Jan 28, 2022 · I need my webdriver tests use a specified chromedriver in a directory. The problem is that when I run the tests it always uses a different chromedriver exe that was set as a …

  2. WebdriverIO how to specify the test to run from npm command

    Jul 29, 2020 · I am using WebdriverIO. I start my tests from the command line using 'npm test', which triggers the command: wdio wdio.conf.js as specified in my package.json here: "scripts": { "

  3. is not recognized as an internal or external command - wdio

    Jun 1, 2022 · When I try to run the code ./node_modules/.bin/wdio config I have got this error: '.' is not recognized as an internal or external command, operable program or batch file.

  4. How do i run 'tagged' scenarios with Cucumber tags in WebdriverIO

    Aug 19, 2020 · Hi _ if anyone can help here- I am trying to run a specific scenario by using Cucumber tags- this is the expression i am using to run the tests built with Webdriver- …

  5. Updated to wdio8. Running the automation is giving error …

    Sep 9, 2023 · Capabilities in wdio.conf: capabilities: [{ // capabilities for local browser web tests browserName: browser, // or "firefox", "microsoftedge", "safari" browserVersion: 'stable' }], …

  6. node.js - WebdriverIO - Execute some tests consecutively and …

    Aug 17, 2021 · 1 I have a WDIO project that has many tests. Some tests need to be run consecutively while other tests can run in parallel. I cannot run all tests in parallel because the …

  7. chrome browser not opening in webdriverio - Stack Overflow

    Apr 6, 2023 · i am a new learner, tried the Webdriverio tutorial from youtube, but it's not working the issue with configuration or setup, not able to understand, Wrote a Simple program of …

  8. How to use localStorage.setItem () in WDIO? - Stack Overflow

    Jan 31, 2024 · 1 I want to interact with localStorage in browsers (Edge, Chrome) when testing by WDIO. For example, if I setItem into localStorage: In CYPRESS: …

  9. How to set environment variable to run webdriverIO script

    Apr 6, 2022 · I am running my webdriverIO test cases using command npx wdio run .\wdio.conf.js --spec .\test\intel.test.js Now I want to pass environment variable for the same like ENV=qa

  10. typescript - How do i run tagged Feature/scenario/Examples in ...

    Feb 10, 2023 · npx wdio run wdio.conf.js --cucumberOpts.tagExpression='@sanity and @stage' When I use the above, nothing happens - i have defined the tag - '@Tag' at the feature level- …