测试积点老人 发表于 2020-9-24 11:28:10

appium 实现竖屏切换求助?

rotate (ScreenOrientation orientation) 方法实现横竖屏切换遇到的情况。
Appium有两个api
#获取当前屏幕的方向
get_orientation()
#设置屏幕横屏或者竖屏
rotate(ScreenOrientation orientation)
在从一些资料中查询到实现横竖屏的两个参数是: LANDSCAPE (横向) 或 PORTRAIT (纵向)
问题来了:
如何把这两个参数的其中一个填入rotate方法
我使用rotate("LANDSCAPE ")和rotate(LANDSCAPE )都不行。
求教各位大神们。

jeknight 发表于 2020-9-24 15:41:54

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));

海海豚 发表于 2020-9-25 09:18:56

https://blog.csdn.net/m0_38115806/article/details/82746216   看下这个

qqq911 发表于 2020-9-25 10:22:18

可以用java的吧

jingzizx 发表于 2020-9-25 13:08:49

看楼上的函数说明

郭小贱 发表于 2020-9-25 13:17:38

参考这篇文章看下呢https://testerhome.com/topics/4076
页: [1]
查看完整版本: appium 实现竖屏切换求助?