What are the different types of Wait in Appium with Java?
Code Snippet:
//Implicit Wait in Appium driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS); //Explicit Wait in Appium Thread.sleep(5);
Posted on April 9, 2019
By Shah Nawaz
//Implicit Wait in Appium driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS); //Explicit Wait in Appium Thread.sleep(5);