Using Selenium 2.0 WebDriver (java), I need to check some navigation (rotate, pan ...)
I need to be able to hold the RIGHT button while moving the mouse.
Likewise, I should be able to hold down the MIDDLE button while moving the mouse.
This seems to be possible only with the LEFT button.
Actions actions = new Actions(driver);
actions.clickAndHold().perform();
The next question: I do not mean a single menu, button, widget, but with a 3D environment such as GoogleMap, where I need to simulate pan, rotate and zoom with the MIDDLE button, the RIGHT button, and even the mouse wheel ...
Any help?
source
share