C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Navigate On Browser using Selenium WebDriver
WhatsApp
Abhishek Arora
Jul 12
2016
809
0
0
WebDriver driver=
new
FirefoxDriver();
driver.
get
(
"http://www.c-sharpcorner.com/"
);
driver.navigate().to(
"http://www.c-sharpcorner.com/blogs"
);
//Go back to the last visited page
driver.navigate().back();
//go forward to the next page
driver.navigate().forward();
Selenim Webdriver
Selenium Automation
Navigation in Selenium
Up Next
Navigate On Browser using Selenium WebDriver