在 android Appium WebDriver 中向下滚动的问题 [英] Issue with scroll down in android Appium WebDriver

查看:29
本文介绍了在 android Appium WebDriver 中向下滚动的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何向下滚动以查看 Appium WebDriver 中的元素外观?我们正在使用模拟器进行自动化.

How can I scroll down for the element appearance in Appium WebDriver? We are using an emulator for automation.

任何建议/帮助将不胜感激.

Any suggestions/help would be appreciated.

推荐答案

这个可行

    TouchAction action = new TouchAction(androidDriver);
    action.press(0, 500)
            .waitAction(200)
            .moveTo(0, 200)
            .release()
            .perform();

只需使用坐标即可获得所需的滑动.

Just play with the coordinates to get the desidered swiping.

这篇关于在 android Appium WebDriver 中向下滚动的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆