gpt4 book ai didi

java - 是否可以通过在 Android 上使用 Appium 滑动来从最近使用的应用程序屏幕中终止应用程序?

转载 作者:行者123 更新时间:2023-12-01 17:20:45 27 4
gpt4 key购买 nike

我尝试通过定义起点和终点来使用 Touchaction,但它似乎不起作用。有什么建议吗?

public static void swipeVertical(AppiumDriver driver, double startPercentage, double finalPercentage, double anchorPercentage, int duration) throws Exception {

Dimension size = driver.manage().window().getSize();
int anchor = (int) (size.width * anchorPercentage);
int startPoint = (int) (size.height * startPercentage);
int endPoint = (int) (size.height * finalPercentage);
new TouchAction(driver).press(anchor, startPoint).waitAction(duration).moveTo(anchor, endPoint).release().perform();

//In documentation they mention moveTo coordinates are relative to initial ones, but thats not happening. When it does we need to use the function below
//new TouchAction(driver).press(anchor, startPoint).waitAction(duration).moveTo(0,endPoint-startPoint).release().perform();
}

swipeVertical(driver,0.9,0.1,0.5,3000);

最佳答案

appium 上的按键由

完成

driver.press_keycode(code)

All required codes can be found here

  • 187 - KEYCODE_APP_SWITCH

试试这个,不知道是否能解决

关于java - 是否可以通过在 Android 上使用 Appium 滑动来从最近使用的应用程序屏幕中终止应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61294707/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com