I want to perform mouse click on blank area outside a form in order to wake up the data traffic in some website by Selenium IDE. Any ideas?
I've tried to do click by x,y but it doesn't effective for my test case. The scenario is below:
You can use the command:
driver.findElement(By.xpath("//html")).click();
But sometimes it doesnt take blank spaces,
In such cases, use:
driver.get("//html");