HOW TO NAVIGATE BACKWARD AND FORWARD USING SELENIUM WEBDRIVER?





We can use the following code to navigate to back of the current browser window:
driver.navigate().back();




We can use the following code to navigate to forward of the current browser window:
driver.navigate().forward();




Post a Comment

0 Comments