Appium 6.1.0 TouchActions与TouchAction

时间:2018-11-06 14:12:43

标签: appium appium-ios appium-android

我正在搜索使用最新(此时)的Appium Java客户端6.1.0创建Tap / Swipe / Drag等事件的“正确”或“最新”方式。 我在Appium网站(Tap using TouchActionsTouch using TouchAction)上看到了不同的文档,并且没有引用,我应该使用哪个(不推荐使用?)。

new TouchAction(driver)
    .tap(tapOptions()
    .withElement(element(myElement)))
    .perform();

new TouchActions(driver)
    .singleTap(myElement)
    .perform();

TouchActions似乎是Selenium项目的一部分,TouchAction是Appium的一部分,但这并不意味着Appium是正确的方法。

p.s目前,我正在使用适用于Android / iOS的Chrome / Safari浏览器进行测试,但这并不意味着我不需要本机应用程序对代码的支持。

谢谢您的时间

2 个答案:

答案 0 :(得分:3)

您要使用TouchAction(Appium)。

下面是我的代码的一部分。第一个是通用滚动功能,它以坐标为参数。通常,您不会直接调用该函数,它是由其他函数(例如我在其下面提供的scrollDown函数)调用的,该函数计算坐标并调用常规的scroll函数。

希望这会有所帮助。

/**
 * This method scrolls based upon the passed parameters
 * @author Bill Hileman
 * @param int startx - the starting x position
 * @param int starty - the starting y position
 * @param int endx - the ending x position
 * @param int endy - the ending y position
 */
@SuppressWarnings("rawtypes")
public void scroll(int startx, int starty, int endx, int endy) {

    TouchAction touchAction = new TouchAction(driver);

    touchAction.longPress(PointOption.point(startx, starty))
               .moveTo(PointOption.point(endx, endy))
               .release()
               .perform();

}

/**
 * This method does a swipe upwards
 * @author Bill Hileman
 */
public void scrollDown() {

    //The viewing size of the device
    Dimension size = driver.manage().window().getSize();

    //Starting y location set to 80% of the height (near bottom)
    int starty = (int) (size.height * 0.80);
    //Ending y location set to 20% of the height (near top)
    int endy = (int) (size.height * 0.20);
    //x position set to mid-screen horizontally
    int startx = (int) size.width / 2;

    scroll(startx, starty, startx, endy);

}

答案 1 :(得分:1)

使用TouchAction类的最新方法是使用AndroidTouchAction类而不是TouchAction类,因为现在已经成为通用类。这就是为什么您在最后一个答案中使用@SuppressWarnings("rawtypes")的原因。

这是在6.1.0中点击元素的方式

对于Android:

AndroidTouchAction touch = new AndroidTouchAction (driver);
touch.tap (TapOptions.tapOptions ()
    .withElement (ElementOption.element (e)))
  .perform ();

对于iOS:

IOSTouchAction touch = new IOSTouchAction (driver);
touch.tap (TapOptions.tapOptions ()
    .withElement (ElementOption.element (e)))
  .perform ();