appium 实现竖屏切换求助?
rotate (ScreenOrientation orientation) 方法实现横竖屏切换遇到的情况。Appium有两个api
#获取当前屏幕的方向
get_orientation()
#设置屏幕横屏或者竖屏
rotate(ScreenOrientation orientation)
在从一些资料中查询到实现横竖屏的两个参数是: LANDSCAPE (横向) 或 PORTRAIT (纵向)
问题来了:
如何把这两个参数的其中一个填入rotate方法
我使用rotate("LANDSCAPE ")和rotate(LANDSCAPE )都不行。
求教各位大神们。
appiu官网查询的结果是,Java支持这个命令,Python不支持
http://appium.io/docs/en/commands/device/interactions/rotate/index.html
Rotate
Rotate the device in three dimensions
Example Usage:(Java)
driver.rotate(new DeviceRotation(10, 10, 10));
https://blog.csdn.net/m0_38115806/article/details/82746216 看下这个 可以用java的吧 看楼上的函数说明 参考这篇文章看下呢https://testerhome.com/topics/4076
页:
[1]