-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Selenium Grid - Firefox - UnknownCommandError: POST /session/{sessionId}/moveto did not match a known command #5332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This is an issue with protractor, please file an issue there. |
Partly an issue with protractor, the new actions API hasn't been published for the JS bindings (see #4564) I'll be publishing a release in the next few days. Not sure when protractor will adopt it though. |
FYI, |
@jleyba Sorry about asking a lame question but I am sort of confused here. The issue was only for selenium grid which I was setting up using Docker. When I start selenium server using webdriver-manager start, the tests worked as expected. So how this all will fix the issue? Protractor will publish a new update here? Or selenium will publish a new update. |
@jleyba this is to fixed by protractor? |
@lmtierney @sahil1610 I'm sorry for bringing up the question again, but why is this Protractor issue if this works with standalone Firefox (locally and Docker image from SeleniumHQ) and fails only on Selenium Grid (Docker)? All are running same versions of selenium 3.14.0, geckodriver 0.21.0 and Detected dialect: W3C. |
@dsamburskyi If you have a reproducible scenario using selenium code, please open a new issue with the information. |
@dsamburskyi , see angular/protractor#4687 (comment) where I answer your question. In short, it's a bug in Protractor. |
Meta -
OS: OSX
Selenium Grid Version: 3.8.1
Browser: Firefox
Browser Version: 57.0.4
Expected Behavior - Actions class function should work
Actual Behavior - Actions class function are not working
This issue is specific to selenium grid only
Steps to reproduce -
Run the following protractor script in FIREFOX browser:
describe('Test', function () { 'use strict'; it('Firefox Actions class', function () { browser.get('http://www.protractortest.org/#/'); browser.actions().mouseMove(element(by.css('.github-button'))).perform(); browser.sleep(10000); }); })
Note that the same works on Selenium grid 3.2.0
The text was updated successfully, but these errors were encountered: