appium,明明元素正确怎么就是找不到
//android.view.View[@content-desc="显示菜单 全部"]
通过循环将页面的全部类型对象打印输出到List
这样就能看出来
a = self.find_elements(*show_all_button2)
text = FindText(self.driver).find_text('//android.view.View')
L= []
for i in a:
text = i.get_attribute("contentDescription")
L.append(text)
print(L)
打印结果:
[None,'显示菜单\n全部']