Selenium 04 - How to maximize the windows in webdriver
This will going to be an video series for the selenium automation tool this is the very being of all video lecture hope you love this series please support me by subscribing my YouTube Channel This is code public static void main(String[] args) throws InterruptedException { System.setProperty("webdriver.chrome.driver", "Path"); ChromeDriver driver= new ChromeDriver(); driver.manage().window().maximize(); // This is use to make window full size driver.get("https://www.google.co.in/"); Thread.sleep(2000); driver.close();
This will going to be an video series for the selenium automation tool this is the very being of all video lecture hope you love this series please support me by subscribing my YouTube Channel This is code public static void main(String[] args) throws InterruptedException { System.setProperty("webdriver.chrome.driver", "Path"); ChromeDriver driver= new ChromeDriver(); driver.manage().window().maximize(); // This is use to make window full size driver.get("https://www.google.co.in/"); Thread.sleep(2000); driver.close();