appium中控件坐标及控件属性获取

时间:2024-03-16 08:34:19

在appium有时会遇到content-desc中存在内容的情况,有时需要校验它的值,那么它是怎么获取的呢?
driver.find_element_by_XX().get_attribute(“contentDescription”)
使用上边的方式可以获取到content-desc中的值。
appium中控件坐标及控件属性获取

像上图中我们其实都可以通过get_attribute(“xxxx”)的方式获取到对应的控件属性,比如:
driver.find_element_by_XX().get_attribute(“checkable”)
driver.find_element_by_XX().get_attribute(“clickable”)
appium控件的size和location。
size:返回控件的高度和宽度。
location:返回控件的坐标点(最左上角的坐标点)。
比如:
appium中控件坐标及控件属性获取

size=driver.find_element_by_XX().size
location=driver.find_element_by_XX().location
得到的size为:{‘height’:317,‘width’:960}
得到的location为:{‘x’:60,‘y’:884}
通过和uiautomatorviewer我们得到的控件bounds进行比较,bounds中的第一个列表参数,表示的是该控件的location的值,第二个列表参数表示的值,
是对应的location中x和width相加得到的值,y和height相加得到的值(其实就是该控件所占的区域)。
通过得到控件的size和location我们就可以进行截图,对比控件等等操作。
http://www.bcbxhome.com/bcbxxy/forum.php?mod=viewthread&tid=310&extra=page%3D1