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 construction to wait some element appears:
wait_true { exists { find_element(:xpath, path_to_element) } }
Of course, you can find not only by :xpath.
:xpath
Also you can set timeout:
wait_true(timeout) { exists { find_element(:xpath, path_to_element) } }