求证:swipe 滑动,现在可用吗? self.driver.touch('drag',{'fromX':xxx,'fromY':xxx,'toX':xxxxx,'toY':xxxx,'steps':10}) 把坐标换了 N 次还是没有反应。。。。。
https://github.com/macaca-sample/sample-nodejs
楼主是 android 还是 iOS?
楼主解决了??? 刚了 android python,效果还是点击
android
试了,没有反应。。还是没有滑动。。。
你指的是 send_keys? 如果是这个的话,确实解决了。。。已经能够正常输入。如果 macaca-android 等驱动安装成功的话,wd 升级到新版本就行了。新版本 wd 修改了 value_to_key_strokes()方法。
driver.touch('drag',{'fromX':950,'fromY':1600,'toX':50,'toY':1600,'duration':1}) android 6.0/python 亲测可以的,原来的语句不能用了,你试试
好的,我试试。。谢谢啦
@majia @xdf 感谢,亲测确是方法的参数改了。。steps 变为 duration 了。 driver.touch('drag',{'fromX':950,'fromY':1600,'toX':50,'toY':1600,'duration':1})