答案 0 :(得分:0)
Appium将页面解释为XML,因此没有两个元素具有相同的定位器。因此,您可以按文件夹名称找到,例如。
def cameraPicturesLocatorBy = By.xpath("//*[@text='Camera pictures']")
和
def allPhotosLocatorBy = By.xpath("//*[@text='All photos']")
答案 1 :(得分:0)
查看屏幕截图,您可以使用ID。在Python中:
driver.find_element_by_id('your id')