美文网首页
Appium学习(9)——获取设备及控件相关信息

Appium学习(9)——获取设备及控件相关信息

作者: 静静地就好 | 来源:发表于2019-11-10 23:48 被阅读0次

1、get_window_size (windowHandle='current'):获取当前设备的宽、高。

用法:width = driver.get_window_size()['width']

height = driver.get_window_size()['height']

2、location:获取元素的左上角坐标。

用法:x = element.location['x']

y = element.location['y']

3、size:获取元素的宽、高。

用法:width = element.size['width']

height = element.size['height']

4、current_activity:获取设备当前的activity值,只适用于Android。

用法:driver.current_activity

5、rect:获取元素的尺寸和坐标。

用法:x = element.rect['x']

y = element.rect['y']

width = element.rect['width']

height = element.rect['height']

官方链接:http://appium.io/docs/en/commands/web/window/get-window-size/

http://appium.io/docs/en/commands/element/attributes/location/

相关文章

网友评论

      本文标题:Appium学习(9)——获取设备及控件相关信息

      本文链接:https://www.haomeiwen.com/subject/oesobctx.html