目前想实现从左向右滑动效果,使用了 swipe 方法,可实际观察的效果是先点击,然后滑动,但是却没有滑动的效果
def testSwipeToRightOfMission(self):
''' 安卓 --> 任务 --> 向右滑动,进入任务列表测试 '''
import time
driver = self.driver
driver.implicitly_wait(10)
time.sleep(3)
driver.swipe(200, 900, 900, 900, 1)
time.sleep(5)
搜索了群里的几个帖子,也看了这个帖子(http://testerhome.com/topics/1132js.executeScript("mobile:),官网不是说已经废弃了 swipe", swipeObject);类似这样的方式,而是直接使用 swipe、flick 吗?
请问大家是如何解决这个问题的?