You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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 likeawait 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-opera
where this issue can be reproduced.Can someone help me to understand this issue?
The text was updated successfully, but these errors were encountered: