Hi all,
Im trying to find an element, that i know, that is not in the screen, and i want appium to continue with the code.
I’ve tried with the following code:
try:
driver.find_element_by_id(“android:id/button1”)
except:
print(‘Not finded’)
And the program is not getting out of the driver.find, it’s like a loop, how can i continue with the code?