operachromiumdriver
operachromiumdriver copied to clipboard
UnknownCommandError: Unrecognized command: actions
I found an issue with latest release of operachromiumdriver for MacOS. It works with something like await driver.findElement(By.id('foo')).click(); but not with a more complex Mouse actions like await driver.actions().move({ x: 100, y: 100 }).press().move({ x: 400, y: 400 }).release().perform()
If i try something like this, i got the following error: UnknownCommandError: Unrecognized command: actions
I have created a sandbox project https://github.com/3epnm/selenium-operawhere this issue can be reproduced.
Can someone help me to understand this issue?