I am testing an iOS app, and can\'t interact with the elements after logging in because Appium is going too fast.
Can someone please point me to an example of using a We
I use this solutions in appium java:
Thread.sleep(1000);
WebDriverWait wait = new WebDriverWait(driver, 30); wait.until(ExpectedConditions.elementToBeClickable(By.name("somename")));
WebDriverWait wait = new WebDriverWait(driver, 30);
wait.until(ExpectedConditions.elementToBeClickable(By.name("somename")));