operachromiumdriver icon indicating copy to clipboard operation
operachromiumdriver copied to clipboard

UnknownCommandError: Unrecognized command: actions

Open mbretschn opened this issue 5 years ago • 0 comments

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?

mbretschn avatar Dec 09 '20 17:12 mbretschn