I am trying to automate the webpage \"http://the-internet.herokuapp.com/exit_intent\" where if we move out of the Viewpane towards the top of the page then the pop up window
For me this is working , using the webrowser Chrome :
Actions action=new Actions(driver); action.moveByOffset(600, -1).build().perform();
This is not working for me:
action.moveToElement(e).moveByOffset(600,-1).build().perform();