I\'m starting an already installed app using appium.
After my driver is initialized. How do I make it poll-wait till certain activity is displayed?
I saw onl
Also you could make use of the following:
getDriver().manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
or just:
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
or something like the following:
Thread.sleep(5000);