Wait for element to load when testing an iOS app using Appium and Ruby? -
i testing ios app, , can't interact elements after logging in because appium going fast.
can please point me example of using webdriverwait style of waiting appium ios testing? preferably in ruby.
thanks.
this worked me new appium
#code navigated page wait = selenium::webdriver::wait.new :timeout => 10 wait.until { @driver.find_element(:name, 'myelementname').displayed? } #code deals myelementname
Comments
Post a Comment