-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Description
Have you read the Contributing Guidelines on issues?
- I have read the Contributing Guidelines on issues.
WebdriverIO Version
8.10.2
Node.js Version
16.17.0
Mode
WDIO Testrunner
Which capabilities are you using?
Chrome 113, WDIO 8.10.2, Win10What happened?
This issue is introduced by changes #10330.
Steps to reproduce:
- Setup WDIO [npm init wdio .] using Cucumber + JS, spec and dot reporters, no Babel, no TS. Generate test files here with page object models.
- Create one more feature file and set tag to the feature.
- Add tag expression to wdio.conf.js to cucumberOpts.tagExpression
- Run npx wdio run ./wdio.conf.js
Actual result:
WDIO runner pauses execution, when runner takes file without target tag.
Workaround: downgrade @wdio/cucumber-framework to 8.10.1
What is your expected behavior?
WDIO runner skips file that does not contain expected tagExpression.
How to reproduce the bug.
Full log example is below. It ends with INFO @wdio/cli:launcher: Run onWorkerEnd hook.
Relevant log output
Copyright (C) Microsoft Corporation. All rights reserved.
Try the new cross-platform PowerShell https://aka.ms/pscore6
PS C:\wdio-test> yarn create wdio .
yarn create v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed "create-wdio@8.2.3" with binaries:
- create-wdio
[##################################################] 50/50
-:...........................-:.
+ +
`` + `...` `...` + `
./+/ + .:://:::` `::///::` ` + ++/.
.+oo+ + /:+ooo+-/ /-+ooo+-/ ./ + +oo+.
-ooo+ + /-+ooo+-/ /-+ooo+-/ .: + +ooo.
-+o+ + `::///:-` `::///::` + +o+-
``. /. `` ````` .: .``
.----------------------------.
`-::::::::::::::::::::::::::::::::::::::::-`
.+oooo/:------------------------------:/oooo+.
`.--/oooo- :oooo/--.`
.::-``:oooo` .oooo-``-::.
./-` -oooo`--.: :.-- .oooo- `-/.
-/` `-/oooo////////////////////////////////////oooo/.` `/-
`+` `/+oooooooooooooooooooooooooooooooooooooooooooooooo+:` .+`
-/ +o/.:oooooooooooooooooooooooooooooooooooooooooooo:-/o/ +.
-/ .o+ -oooosoooososssssooooo------------------:oooo- `oo` +.
-/ .o+ -oooodooohyyssosshoooo` .oooo- oo. +.
-/ .o+ -oooodooysdooooooyyooo` `.--.`` .:::-oooo- oo. +.
-/ .o+ -oooodoyyodsoooooyyooo.//-..-:/:.`.//.`./oooo- oo. +.
-/ .o+ -oooohsyoooyysssysoooo+-` `-:::. .oooo- oo. +.
-/ .o+ -ooooosooooooosooooooo+//////////////////oooo- oo. +.
-/ .o+ -oooooooooooooooooooooooooooooooooooooooooooo- oo. +.
-/ .o+ -oooooooooooooooooooooooooooooooooooooooooooo- oo. +.
-+////o+` -oooo---:///:----://::------------------:oooo- `oo////+-
+ooooooo/`-oooo``:-```.:`.:.`.+/- .::::::::::` .oooo-`+ooooooo+
oooooooo+`-oooo`-- `/` .:+ -/-`/` .:::::::::: .oooo-.+oooooooo
+-/+://-/ -oooo-`:`.o-`:.:-````.: .///:`````` -oooo-`/-//:+:-+
: :..--:-:.+ooo+/://o+/-.-:////:-....-::::-....--/+ooo+.:.:--.-- /
- /./`-:-` .:///+/ooooo/+///////////////+++ooooo/+///:. .-:.`+./ :
:-:/. :`ooooo`/` .:.ooooo : ./---
:`ooooo`/` .:.ooooo :
:`ooooo./` .:-ooooo :
:`ooooo./` .:-ooooo :
`...:-+++++:/. ./:+++++-:...`
:-.````````/../ /.-:````````.:-
-/::::::::://:/+ `+/:+::::::::::+.
:oooooooooooo++/ +++oooooooooooo-
Webdriver.IO
Next-gen browser and mobile automation
test framework for Node.js
Installing @wdio/cli to initialize project...
✔ Success!
===============================
🤖 WDIO Configuration Wizard 🧙
===============================
? Where should your tests be launched? local - for e2e testing of web and mobile applications
? Where is your automation backend located? On my local machine
? Would you like to setup Appium for mobile testing? No
? Which framework do you want to use? Cucumber (https://cucumber.io/)
? Do you want to use a compiler? No!
? Do you want WebdriverIO to autogenerate some test files? Yes
? Where should these feature files be located? C:\wdio-test\features\**\*.feature
? Where should these step definitions be located? C:\wdio-test\features\step-definitions\steps.js
? Do you want to use page objects (https://martinfowler.com/bliki/PageObject.html)? Yes
? Where are your page objects located? C:\wdio-test\features\pageobjects\**\*.js
? Which reporter do you want to use? spec, dot
? Do you want to add a plugin to your test setup?
? Do you want to add a service to your test setup? chromedriver
? What is the base url? http://localhost
? Do you want me to run `npm install` Yes
Installing wdio packages:
- @wdio/local-runner@latest
- @wdio/cucumber-framework@latest
- @wdio/spec-reporter@latest
- @wdio/dot-reporter@latest
- wdio-chromedriver-service
- chromedriver
added 138 packages, and audited 622 packages in 17s
124 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
✔ Success!
Creating a WebdriverIO config file...
✔ Success!
Autogenerating test files...
Adding "wdio" script to package.json.
✔ Success!
🤖 Successfully setup project at C:\wdio-test 🎉
Join our Discord Community Server and instantly find answers to your issues or queries. Or just join and say hi 👋!
🔗 https://discord.webdriver.io
Visit the project on GitHub to report bugs 🐛 or raise feature requests 💡:
🔗 https://github.com/webdriverio/webdriverio
To run your tests, execute:
$ cd C:\wdio-test
$ npm run wdio
Done in 99.12s.
PS C:\wdio-test> npx wdio run ./wdio.conf.js
Execution of 2 workers started at 2023-05-11T11:03:38.532Z
2023-05-11T11:03:38.601Z INFO chromedriver: Initiate Chromedriver Launcher (v8.1.1)
2023-05-11T11:03:38.601Z INFO @wdio/cli:launcher: Run onPrepare hook
2023-05-11T11:03:38.604Z INFO chromedriver: Start Chromedriver (C:\wdio-test\node_modules\chromedriver\lib\chromedriver\chromedriver.exe) with args --port=9515 --url-base=/
2023-05-11T11:03:39.098Z INFO chromedriver: Starting ChromeDriver 113.0.5672.63 (0e1a4471d5ae5bf128b1bd8f4d627c8cbd55f70c-refs/branch-heads/5672@{#912}) on port 9515
2023-05-11T11:03:39.098Z INFO chromedriver: Only local connections are allowed.
2023-05-11T11:03:39.099Z INFO chromedriver: Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
2023-05-11T11:03:39.105Z INFO chromedriver: ChromeDriver was started successfully.
2023-05-11T11:03:39.198Z INFO @wdio/cli:launcher: Run onWorkerStart hook
2023-05-11T11:03:39.199Z INFO @wdio/cli:launcher: Run onWorkerStart hook
2023-05-11T11:03:39.200Z INFO @wdio/local-runner: Start worker 0-0 with arg: run,./wdio.conf.js
2023-05-11T11:03:39.466Z INFO @wdio/local-runner: Start worker 0-1 with arg: run,./wdio.conf.js
[0-0] 2023-05-11T11:03:40.541Z INFO @wdio/local-runner: Run worker command: run
[0-1] 2023-05-11T11:03:40.901Z INFO @wdio/local-runner: Run worker command: run
[0-0] (node:5660) DeprecationWarning: `PickleFilter` is deprecated, use `loadSources` instead; see https://github.com/cucumber/cucumber-js/blob/main/docs/deprecations.md
[0-0] (Use `node --trace-deprecation ...` to show where the warning was created)
[0-0] (node:5660) DeprecationWarning: `parseGherkinMessageStream` is deprecated, use `loadSources` instead; see https://github.com/cucumber/cucumber-js/blob/main/docs/deprecations.md
[0-1] (node:16028) DeprecationWarning: `PickleFilter` is deprecated, use `loadSources` instead; see https://github.com/cucumber/cucumber-js/blob/main/docs/deprecations.md
[0-1] (Use `node --trace-deprecation ...` to show where the warning was created)
[0-1] (node:16028) DeprecationWarning: `parseGherkinMessageStream` is deprecated, use `loadSources` instead; see https://github.com/cucumber/cucumber-js/blob/main/docs/deprecations.md
[0-1] RUNNING in chrome - file:///C:/wdio-test/features/login.feature
[0-1] 2023-05-11T11:03:41.513Z INFO webdriver: Initiate new session using the WebDriver protocol
[0-1] 2023-05-11T11:03:41.609Z INFO webdriver: [POST] http://localhost:9515/session
[0-1] 2023-05-11T11:03:41.609Z INFO webdriver: DATA {
[0-1] capabilities: { alwaysMatch: { browserName: 'chrome' }, firstMatch: [ {} ] },
[0-1] desiredCapabilities: { browserName: 'chrome' }
[0-1] }
DevTools listening on ws://127.0.0.1:62932/devtools/browser/22b83f36-821a-446d-af7a-98a10959798d
[0-1] 2023-05-11T11:03:42.383Z INFO webdriver: COMMAND navigateTo("https://the-internet.herokuapp.com/login")
[0-1] 2023-05-11T11:03:42.383Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/url
[0-1] 2023-05-11T11:03:42.383Z INFO webdriver: DATA { url: 'https://the-internet.herokuapp.com/login' }
[0-1] (node:16028) DeprecationWarning: `Runtime` is deprecated, use `runCucumber` instead; see https://github.com/cucumber/cucumber-js/blob/main/docs/deprecations.md
[0-1] 2023-05-11T11:03:45.261Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:45.264Z INFO webdriver: COMMAND findElement("css selector", "#username")
[0-1] 2023-05-11T11:03:45.265Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:45.265Z INFO webdriver: DATA { using: 'css selector', value: '#username' }
[0-1] 2023-05-11T11:03:45.282Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '3236BBF2FB07249FCE769A0A0A5C9795_element_20'
[0-1] }
[0-1] 2023-05-11T11:03:45.286Z INFO webdriver: COMMAND elementClear("3236BBF2FB07249FCE769A0A0A5C9795_element_20")
[0-1] 2023-05-11T11:03:45.287Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/3236BBF2FB07249FCE769A0A0A5C9795_element_20/clear
[0-1] 2023-05-11T11:03:45.324Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:45.325Z INFO webdriver: COMMAND elementSendKeys("3236BBF2FB07249FCE769A0A0A5C9795_element_20", "<Screenshot[base64]>")
[0-1] 2023-05-11T11:03:45.325Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/3236BBF2FB07249FCE769A0A0A5C9795_element_20/value
[0-1] 2023-05-11T11:03:45.325Z INFO webdriver: DATA { text: 'tomsmith' }
[0-1] 2023-05-11T11:03:45.371Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:45.372Z INFO webdriver: COMMAND findElement("css selector", "#password")
[0-1] 2023-05-11T11:03:45.373Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:45.373Z INFO webdriver: DATA { using: 'css selector', value: '#password' }
[0-1] 2023-05-11T11:03:45.385Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '3236BBF2FB07249FCE769A0A0A5C9795_element_3'
[0-1] }
[0-1] 2023-05-11T11:03:45.388Z INFO webdriver: COMMAND elementClear("3236BBF2FB07249FCE769A0A0A5C9795_element_3")
[0-1] 2023-05-11T11:03:45.389Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/3236BBF2FB07249FCE769A0A0A5C9795_element_3/clear
[0-1] 2023-05-11T11:03:45.409Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:45.409Z INFO webdriver: COMMAND elementSendKeys("3236BBF2FB07249FCE769A0A0A5C9795_element_3", "SuperSecretPassword!")
[0-1] 2023-05-11T11:03:45.409Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/3236BBF2FB07249FCE769A0A0A5C9795_element_3/value
[0-1] 2023-05-11T11:03:45.409Z INFO webdriver: DATA { text: 'SuperSecretPassword!' }
[0-1] 2023-05-11T11:03:45.450Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:45.450Z INFO webdriver: COMMAND findElement("css selector", "button[type="submit"]")
[0-1] 2023-05-11T11:03:45.450Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:45.451Z INFO webdriver: DATA { using: 'css selector', value: 'button[type="submit"]' }
[0-1] 2023-05-11T11:03:45.463Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '3236BBF2FB07249FCE769A0A0A5C9795_element_26'
[0-1] }
[0-1] 2023-05-11T11:03:45.464Z INFO webdriver: COMMAND elementClick("3236BBF2FB07249FCE769A0A0A5C9795_element_26")
[0-1] 2023-05-11T11:03:45.465Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/3236BBF2FB07249FCE769A0A0A5C9795_element_26/click
[0-1] 2023-05-11T11:03:45.895Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:45.898Z INFO webdriver: COMMAND findElement("css selector", "#flash")
[0-1] 2023-05-11T11:03:45.898Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:45.899Z INFO webdriver: DATA { using: 'css selector', value: '#flash' }
[0-1] 2023-05-11T11:03:45.914Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '89AB138EF9817A27660726423215CA0E_element_44'
[0-1] }
[0-1] 2023-05-11T11:03:45.916Z INFO webdriver: COMMAND findElements("css selector", "#flash")
[0-1] 2023-05-11T11:03:45.917Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/elements
[0-1] 2023-05-11T11:03:45.917Z INFO webdriver: DATA { using: 'css selector', value: '#flash' }
[0-1] 2023-05-11T11:03:45.929Z INFO webdriver: RESULT [
[0-1] {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '89AB138EF9817A27660726423215CA0E_element_44'
[0-1] }
[0-1] ]
[0-1] 2023-05-11T11:03:45.933Z INFO webdriver: COMMAND findElement("css selector", "#flash")
[0-1] 2023-05-11T11:03:45.933Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:45.933Z INFO webdriver: DATA { using: 'css selector', value: '#flash' }
[0-1] 2023-05-11T11:03:45.940Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '89AB138EF9817A27660726423215CA0E_element_44'
[0-1] }
[0-1] 2023-05-11T11:03:45.943Z INFO webdriver: COMMAND getElementText("89AB138EF9817A27660726423215CA0E_element_44")
[0-1] 2023-05-11T11:03:45.943Z INFO webdriver: [GET] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/89AB138EF9817A27660726423215CA0E_element_44/text
[0-1] 2023-05-11T11:03:45.955Z INFO webdriver: RESULT You logged into a secure area!
[0-1] ×
[0-1] 2023-05-11T11:03:45.958Z INFO webdriver: COMMAND navigateTo("https://the-internet.herokuapp.com/login")
[0-1] 2023-05-11T11:03:45.958Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/url
[0-1] 2023-05-11T11:03:45.958Z INFO webdriver: DATA { url: 'https://the-internet.herokuapp.com/login' }
[0-1] 2023-05-11T11:03:46.193Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:46.196Z INFO webdriver: COMMAND findElement("css selector", "#username")
[0-1] 2023-05-11T11:03:46.196Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:46.196Z INFO webdriver: DATA { using: 'css selector', value: '#username' }
[0-1] 2023-05-11T11:03:46.208Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': 'EFBC22C26712DFC4DD4F16593CC7A0D9_element_83'
[0-1] }
[0-1] 2023-05-11T11:03:46.210Z INFO webdriver: COMMAND elementClear("EFBC22C26712DFC4DD4F16593CC7A0D9_element_83")
[0-1] 2023-05-11T11:03:46.210Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/EFBC22C26712DFC4DD4F16593CC7A0D9_element_83/clear
[0-1] 2023-05-11T11:03:46.235Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:46.236Z INFO webdriver: COMMAND elementSendKeys("EFBC22C26712DFC4DD4F16593CC7A0D9_element_83", "foobar")
[0-1] 2023-05-11T11:03:46.236Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/EFBC22C26712DFC4DD4F16593CC7A0D9_element_83/value
[0-1] 2023-05-11T11:03:46.236Z INFO webdriver: DATA { text: 'foobar' }
[0-1] 2023-05-11T11:03:46.271Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:46.271Z INFO webdriver: COMMAND findElement("css selector", "#password")
[0-1] 2023-05-11T11:03:46.271Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:46.272Z INFO webdriver: DATA { using: 'css selector', value: '#password' }
[0-1] 2023-05-11T11:03:46.280Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': 'EFBC22C26712DFC4DD4F16593CC7A0D9_element_65'
[0-1] }
[0-1] 2023-05-11T11:03:46.281Z INFO webdriver: COMMAND elementClear("EFBC22C26712DFC4DD4F16593CC7A0D9_element_65")
[0-1] 2023-05-11T11:03:46.281Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/EFBC22C26712DFC4DD4F16593CC7A0D9_element_65/clear
[0-1] 2023-05-11T11:03:46.306Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:46.307Z INFO webdriver: COMMAND elementSendKeys("EFBC22C26712DFC4DD4F16593CC7A0D9_element_65", "barfoo")
[0-1] 2023-05-11T11:03:46.307Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/EFBC22C26712DFC4DD4F16593CC7A0D9_element_65/value
[0-1] 2023-05-11T11:03:46.307Z INFO webdriver: DATA { text: 'barfoo' }
[0-1] 2023-05-11T11:03:46.339Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:46.339Z INFO webdriver: COMMAND findElement("css selector", "button[type="submit"]")
[0-1] 2023-05-11T11:03:46.340Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:46.340Z INFO webdriver: DATA { using: 'css selector', value: 'button[type="submit"]' }
[0-1] 2023-05-11T11:03:46.348Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': 'EFBC22C26712DFC4DD4F16593CC7A0D9_element_89'
[0-1] }
[0-1] 2023-05-11T11:03:46.349Z INFO webdriver: COMMAND elementClick("EFBC22C26712DFC4DD4F16593CC7A0D9_element_89")
[0-1] 2023-05-11T11:03:46.350Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/EFBC22C26712DFC4DD4F16593CC7A0D9_element_89/click
[0-1] 2023-05-11T11:03:46.790Z INFO webdriver: RESULT null
[0-1] 2023-05-11T11:03:46.792Z INFO webdriver: COMMAND findElement("css selector", "#flash")
[0-1] 2023-05-11T11:03:46.793Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:46.793Z INFO webdriver: DATA { using: 'css selector', value: '#flash' }
[0-1] 2023-05-11T11:03:46.803Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '3E21796101B7CC7B05CDBA24544ACDD3_element_106'
[0-1] }
[0-1] 2023-05-11T11:03:46.805Z INFO webdriver: COMMAND findElements("css selector", "#flash")
[0-1] 2023-05-11T11:03:46.805Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/elements
[0-1] 2023-05-11T11:03:46.805Z INFO webdriver: DATA { using: 'css selector', value: '#flash' }
[0-1] 2023-05-11T11:03:46.813Z INFO webdriver: RESULT [
[0-1] {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '3E21796101B7CC7B05CDBA24544ACDD3_element_106'
[0-1] }
[0-1] ]
[0-1] 2023-05-11T11:03:46.814Z INFO webdriver: COMMAND findElement("css selector", "#flash")
[0-1] 2023-05-11T11:03:46.814Z INFO webdriver: [POST] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element
[0-1] 2023-05-11T11:03:46.814Z INFO webdriver: DATA { using: 'css selector', value: '#flash' }
[0-1] 2023-05-11T11:03:46.821Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '3E21796101B7CC7B05CDBA24544ACDD3_element_106'
[0-1] }
[0-1] 2023-05-11T11:03:46.823Z INFO webdriver: COMMAND getElementText("3E21796101B7CC7B05CDBA24544ACDD3_element_106")
[0-1] 2023-05-11T11:03:46.823Z INFO webdriver: [GET] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec/element/3E21796101B7CC7B05CDBA24544ACDD3_element_106/text
[0-1] 2023-05-11T11:03:46.830Z INFO webdriver: RESULT Your username is invalid!
[0-1] ×
[0-1] 2023-05-11T11:03:46.832Z INFO webdriver: COMMAND deleteSession()
[0-1] 2023-05-11T11:03:46.832Z INFO webdriver: [DELETE] http://localhost:9515/session/a0e7d0dc4182eaf6f2975c4832c142ec
[0-1] 2023-05-11T11:03:46.897Z INFO webdriver: RESULT null
[0-1] PASSED in chrome - file:///C:/wdio-test/features/login.feature
2023-05-11T11:03:47.031Z INFO @wdio/cli:launcher: Run onWorkerEnd hookCode of Conduct
- I agree to follow this project's Code of Conduct
Is there an existing issue for this?
- I have searched the existing issues
Reactions are currently unavailable

