Is there an alternative for deprecated selenium-webdriver method:
JavaScript
x
2
1
find_element_by_android_uiautomator()
2
?
Thanks.
Advertisement
Answer
The answer is using:
JavaScript
1
3
1
from appium.webdriver.common.appiumby import AppiumBy
2
self.driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, '')
3