Anyone know if appium waits are broken?
Here is what I have for waits. The process to find the element still goes on for 30 seconds.
$appiumDriver.wait(15){$appiumDriver.find_element(:name,element_name)}
Anyone know if appium waits are broken?
Here is what I have for waits. The process to find the element still goes on for 30 seconds.
$appiumDriver.wait(15){$appiumDriver.find_element(:name,element_name)}
set_wait 0
Make sure the implicit wait is set to zero.
Oh this is great. It worked. Thank you!
I thought it worked before without adding set_wait.