driver.navigate().to("http://www.example.com");
The “navigate” interface also exposes the ability to move backwards and forwards in your browser’s history:
driver.navigate().forward();
driver.navigate().back();
driver.navigate().to("http://www.example.com");
driver.navigate().forward();
driver.navigate().back();
No comments:
Post a Comment