Closed
Bug 1337945
Opened 9 years ago
Closed 9 years ago
moveto did not match a known command
Categories
(Remote Protocol :: Marionette, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1337133
People
(Reporter: ritter_bruce, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0
Build ID: 20161123182536
Steps to reproduce:
Language: Java
Marionette version 0.14
Selenium 2.53.1
Grid 2.53.1
O/S, Windows 7 64 bit (both local and remote)
Only fails for remote node using Firefox, local browser or Chrome works fine.
Code that fails:
Case 1: Actions navigator = new Actions(driver);
navigator.click(element)
.sendKeys(Keys.END)
.keyDown(Keys.SHIFT)
.sendKeys(Keys.HOME)
.keyUp(Keys.SHIFT)
.sendKeys(Keys.BACK_SPACE)
.sendKeys(text)
.perform();
(element is a textbox)
Case 2: Actions action = new Actions(driver);
action.moveToElement(mainElement).perform();
(mainElement is a menu element)
Actual results:
org.openqa.selenium.WebDriverException: POST /session/37196559-5fb8-42ee-9ced-e898c83b408d/moveto did not match a known command (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 3 milliseconds
Build info: version: '2.53.1', revision: 'a36b8b1', time: '2016-06-30 17:37:03'
System info: host: 'STP-ITD-VM02', ip: '172.22.40.101', os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_111'
Driver info: org.openqa.selenium.firefox.MarionetteDriver
Capabilities [{rotatable=false, raisesAccessibilityExceptions=false, marionette=true, appBuildId=20160823121617, version=, platform=XP, proxy={}, command_id=1, specificationLevel=0, acceptSslCerts=false, browserVersion=48.0.2, platformVersion=6.1, XULappId={ec8030f7-c20a-464f-9b0e-13a3a9e97384}, browserName=Firefox, takesScreenshot=true, takesElementScreenshot=true, platformName=Windows_NT, device=desktop, firefox_profile=UEsDBBQACAgIAPldSEoAAAAAAAAAA..., unexpectedAlertBehaviour=ignore}]
Session ID: 37196559-5fb8-42ee-9ced-e898c83b408d
Command duration or timeout: 54 milliseconds
Build info: version: '2.53.1', revision: 'a36b8b1', time: '2016-06-30 17:32:46'
System info: host: 'DRHHW52', ip: '10.55.170.78', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_121'
Driver info: org.openqa.selenium.remote.RemoteWebDriver
Capabilities [{rotatable=false, raisesAccessibilityExceptions=false, marionette=true, appBuildId=20160823121617, version=, platform=XP, proxy={}, command_id=1, specificationLevel=0, acceptSslCerts=false, webdriver.remote.sessionid=e33dff5d-3afa-4ede-aceb-0c7d46842c67, browserVersion=48.0.2, platformVersion=6.1, XULappId={ec8030f7-c20a-464f-9b0e-13a3a9e97384}, browserName=Firefox, takesScreenshot=true, takesElementScreenshot=true, javascriptEnabled=true, platformName=Windows_NT, device=desktop, cssSelectorsEnabled=true, firefox_profile=UEsDBBQACAgIAPldSEoAAAAAAAAAA..., unexpectedAlertBehaviour=ignore}]
Session ID: e33dff5d-3afa-4ede-aceb-0c7d46842c67
Expected results:
Case 1: Text in textbox should have been selected and deleted.
Case 2: 'Mouse' should move to element and hover there (trigger hover action)
| Reporter | ||
Updated•9 years ago
|
OS: Unspecified → Windows 7
Hardware: Unspecified → x86_64
Updated•9 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
Updated•3 years ago
|
Product: Testing → Remote Protocol
You need to log in
before you can comment on or make changes to this bug.
Description
•