测试积点老人 发表于 2021-4-20 13:48:14

appium-python 为什么还要有touchaction,而不直接drive.tap?

appium-python 为什么还要有touchaction,而不直接drive.swipe,是因为,touchaction可以执行一个需要一次性完成的更复杂操作吗?

qqq911 发表于 2021-4-21 12:32:29

针对不同的应用场景

郭小贱 发表于 2021-4-21 13:15:55

touchaction里面应该没有swipe的类似功能,据我所知,touchaction包中有press是、release、move to、tap、wait、longpress、cancel、perform等函数,你可以看一下driver.swipe函数的具体代码,swipe函数可以看成是通过touchaction中的函数封装实现的一个函数,里面用到了press、wait、move to、release、perform等方法函数。

jingzizx 发表于 2021-4-21 19:48:24

楼上答案

Miss_love 发表于 2021-5-31 18:55:41

参看三楼
页: [1]
查看完整版本: appium-python 为什么还要有touchaction,而不直接drive.tap?