In this video will see how to handle different browser window navigations such as how to click on browser backward button, browser forward button, how to maximize/minimize the browser window, How to open the URL, how to navigate to some other url etc.
I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com
Details:
driver.manage().window().maximize();
driver.get("https://programmerworld.co/");
driver.navigate().to("https://www.google.com/");
driver.navigate().back();
driver.navigate().forward();
driver.close();