我正在测试一个iOS应用程序,并且在登录后无法与元素交互,因为Appium的速度太快了.
有人可以指点一个使用WebDriverWait样式等待Appium iOS测试的例子吗?最好是在Ruby中.
谢谢.
解决方法
这对我有用,但我是Appium的新手
#code that navigated to this page wait = Selenium::WebDriver::Wait.new :timeout => 10 wait.until { @driver.find_element(:name,'myElementName').displayed? } #code that deals with myElementName