Hello,
I have recently started using ‘appium’ to automate an android app by using Java.
Is there a way by which I can wait until an element is displayed on the mobile screen ?
For example: I am using the following code for web automation to achieve the similar functionality
WebElement element;
WebDriverWait wait = new WebDriverWait(driver, timeLimitInSeconds);
element = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath(“desired xpath”)));
How can I achieve the similar functionality using android driver ?
Thanks in advance your time
Best Regards,
Rohit
created
Mar '18
last reply
Mar '18
- 4
replies
- 7.6k
views
- 2
users