Navigating
The first thing you’ll want to do with WebDriver is navigate to a page. The normal way to do this is by calling
get:driver.get("http://www.google.com");WebDriver will wait until the page has fully loaded (that is, the
onloadevent has fired) before returning control to your test or script. It’s worth noting that if your page uses a lot of AJAX on load then WebDriver may not know when it has completely loaded. If you need to ensure such pages are fully loaded then you can usewaits.Navigation: History and Location
Earlier, we covered navigating to a page using the
getcommand (driver.get("http://www.example.com")) As you’ve seen, WebDriver has a number of smaller, task-focused interfaces, and navigation is a useful task. Because loading a page is such a fundamental requirement, the method to do this lives on the main WebDriver interface, but it’s simply a synonym to:driver.navigate().to("http://www.example.com");To reiterate:
navigate().to()andget()do exactly the same thing. One’s just a lot easier to type than the other!The
navigateinterface also exposes the ability to move backwards and forwards in your browser’s history:driver.navigate().forward(); driver.navigate().back();
(Emphasis added)