Difference between driver.get() and driver.navigate()

driver.get(““) Will wait till the page loads completely with all controls in place. Used to get page source.              driver.getPageSource();         //returns the page source of current url that driver holds driver.navigate().to(““) Can navigate the page forward/backward driver.navigate().forward(); driver.navigate().back(); Used to refresh history.         driver.navigate().refresh(); To redirect a page will not wait till page loads…

Enhanced / advanced for loop in Java

————————————————————————————————————————- Enhanced for loop is applicable only for arrays, Arrays can be of int or string type… let’s see the old style of writing of for loop in java. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public class ForLoop { public static void main(String[] args)…