如何使用Android uiautomator找到元素?

时间:2018-06-10 11:38:43

标签: android python appium uiautomator android-uiautomator

我正在使用带有Python和Appium的android uiautomator。我有以下元素,我需要找到一种方法来点击它。该元素没有唯一的resourceId,className或text。

The image of the element

The elements details on the uiautomator

1 个答案:

答案 0 :(得分:1)

使用Appium-Inspector获取按钮的xPath,然后通过xPath找到按钮:

btn1 = self.driver.find_element_by_xpath("xpath-here")