I used the below code to hover or can say mouseover in WebDriver, 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?
If yes, how is hover/ mouseover done in python webdriver?