Closed Samuelfaure closed 4 years ago
Any update on this? I am seeing similar issue around the session...
as workaround:
try
.setValue("input[name=search]", "coca-cola" + browser.Keys.ENTER)
or use the following settings:
webdriver: { use_legacy_jsonwire: true },
desiredCapabilities: {
'goog:chromeOptions': { w3c: false },
...
}
This issue has been automatically marked as stale because it has not had any recent activity. If possible, please retry using the latest Nightwatch version and update the issue with any relevant details. If no further activity occurs, it will be closed. Thank you for your contribution.
I'm also facing the same issue on browser.keys(browser.Keys.ENTER)
. Any update on this?
I am also facing this issue. The command browser.keys(browser.Keys.RETURN);
did not work. In nightwatch verbose mode i just see → Running command: keys ('') → Completed command: keys ('') (1ms)
and got no error output. I am using "chromedriver": "78.0.1", "nightwatch": "1.3.1" and "chrome": "78.0.3904.108".
I also see this issue but it looks like it might have just been fixed: https://github.com/nightwatchjs/nightwatch/issues/2262#event-2857336184
After updating to NW 1.3.2 the problem is solved.
Changelog excerpt: Fixed #2262 - keys() command stopped working due to a regression
Thanks for fixing the issue! 👍
This issue has been automatically marked as stale because it has not had any recent activity. If possible, please retry using the latest Nightwatch version and update the issue with any relevant details. If no further activity occurs, it will be closed. Thank you for your contribution.
as workaround:
try
.setValue("input[name=search]", "coca-cola" + browser.Keys.ENTER)
Thank you this workaround was very useful
Node 10.16.2 Chromedriver 76 (updated from 2.46) @vue/cli-plugin-e2e-nightwatch 3.10 (updated from 3.8)
This passed before :
After upgrade, doesn't pass. This pass :
Checking the logs, I see an error :
My nightwatch.conf.js :