如何使用红宝石黄瓜向左滑动

时间:2018-02-14 03:49:50

标签: ruby cucumber appium swipe

我必须滑动x次以查看主页面。 如果我使用
delta = {:x => 0.0,:y => 0.0} 轻弹(" com.test.app:id / textView_slideshow",delta)

我收到错误 无法在{:x => 0.0,:y => 0.0}中滑动(RuntimeError)

滑动和平移功能在ruby中不起作用

1 个答案:

答案 0 :(得分:0)

感谢基思和桑德 而不是轻弹我用

Appium :: TouchAction.new.swipe(start_x:0.90,start_y:0.5,offset_x:0.5,offset_y:0.5,持续时间:500).perform

上面这行我可以向左滑动

此处是指向该网站的链接

https://discuss.appium.io/t/left-to-right-swipe-doesnt-work-for-me-android-appium-using-ruby-cucumber/19950/2