What are the different types of Wait in Appium with Java? – pCloudy – Question and Answers
Home >> Appium Tricks and Tricks >> What are the different types of Wait ...

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);

Leave a Reply

Your email address will not be published. Required fields are marked *