appium java滑动_appium 的 java-client 新版本的滑动操作代码 (TouchAction 取代 swipe)

随着java-client版本更新,swipe方法已废弃,改用TouchAction进行滑动操作。本文展示了如何在Appium中使用java-client-6.1.0进行上滑、下滑、左滑和右滑的方法实现,包括press、waitAction、moveTo和release步骤,并在滑动后添加等待时间确保元素加载。
摘要由CSDN通过智能技术生成

java-client-4.0.0 里面用的是 swipe 方法,新版本的 javaclient 已经废弃了 swipe 方法,下面是用的 TouchAction

appium 的 java-client-6.1.0 新版本的滑动 一部分代码

import io.appium.java_client.TouchAction;

import io.appium.java_client.touch.WaitOptions;

import io.appium.java_client.touch.offset.PointOption;

public class Commom {

public static Duration duration=Duration.ofMillis(300);//滑动 300ms

//下面两个参数,我是放到 testng 里面的 @beforetest里面做了初始化的,这里没有把代码放出来

public static int width;// 手机屏幕宽

public static int height;// 手机屏幕长

// 滑动操作

/**

* This Method for swipe up

* 上滑

* @author X

* @throws InterruptedException

*/

public static void swipeToUp() {

try {

new TouchAction(Init.getDriver()).press(PointOption.point(width / 2, height * 3 / 4)).

waitAction(WaitOptions.waitOptions(duration)).

moveTo(PointOption.point(width / 2, height / 4)).release().perform();

//滑动以后最好是等待一点时间,方便元素加载之类的

Thread.sleep(500);

} catch (Exception e) {

e.printStackTrace();

}

}

/**

* This Method for swipe down

* 下滑

* @author X

* @throws InterruptedException

*/

public static void swipeToDown() {

try {

new TouchAction(Init.getDriver()).press(PointOption.point(width / 2, height / 4)).

waitAction(WaitOptions.waitOptions(duration)).

moveTo(PointOption.point(width / 2, height * 3 / 4)).release().perform();

Thread.sleep(1000);

} catch (Exception e) {

e.printStackTrace();

}

}

/**

* 左滑

*

*/

public static void swipeToLeft() {

try {

new TouchAction(Init.getDriver()).press(PointOption.point(width * 3/ 4, height / 2))

.waitAction(WaitOptions.waitOptions(duration)).

moveTo(PointOption.point(width / 4, height / 2)).release().perform();

Thread.sleep(1000);

} catch (Exception e) {

e.printStackTrace();

}

}

/**

* This Method for swipe Right

* 右滑

* @author X

*/

public static void swipeToRight() {

try {

new TouchAction(Init.getDriver()).press(PointOption.point(width / 4, height / 2)).

waitAction(WaitOptions.waitOptions(duration)).

moveTo(PointOption.point(width * 3/ 4, height / 2)).release().perform();

Thread.sleep(1000);

} catch (Exception e) {

e.printStackTrace();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值