It seems this is the way to do hover / mouseover in webdriver, at least in the java api:
Actions action = new Actions(driver);
action.moveToElement(element).build().perform();
action.moveByOffset(1, 1).build().perform();
Is this possible in the Python api?
The webdriver api docs for python don't seem to mention anything like it.
http://selenium.googlecode.com/svn/trunk/docs/api/py/index.html
How is hover / mouseover done in python webdriver?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…