Why syntax is driver.manage().window().maximize()?
We frequently used the below kinds of method chaining statements in Selenium WebDriver scripts. This is a frequently asked interview question as well and you may be asked to explain the syntax. We are going to learn the same here. driver.manage().window().maximize(); // To maxmize driver.navigate().to(“some url”); // To open url driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);// To set implicit…
Read More “Why syntax is driver.manage().window().maximize()?” »