gpt4 book ai didi

android - 如何滚动由Cordova mfilechooser插件触发的内存文件浏览器

转载 作者:行者123 更新时间:2023-11-29 18:48:59 24 4
gpt4 key购买 nike

我想在 cordova andoird 应用程序中选择一个文件,该应用程序使用 Cordova mfilechooser 插件来浏览文件。我为此使用了以下 Appium 代码。但是滚动没有发生。

AndroidElement list = (AndroidElement) driver
.findElement(By.id("android:id/list"));
MobileElement list_group = list.findElement(
MobileBy.AndroidUIAutomator(
"(new UiScrollable(new UiSelector)).scrollIntoView(" +
"new UiSelector.text(\"importSample\"));"
));
list_group.getLocation();
list_group.click();

最佳答案

下面的代码将用于滚动浏览屏幕。

我们可以在selenium中使用Dimension类:import org.openqa.selenium.Dimension;

代码:

Dimension size = driver.manage().window().getSize();
int x = size.getWidth() / 2;
int startY = (int) (size.getHeight() * 0.10);
int endY = (int) (size.getHeight() * 0.90);
TouchAction ta = new TouchAction(driver);
ta.press(x, endY).waitAction(Duration.ofSeconds(1)).moveTo(x, startY).release();
ta.perform();

关于android - 如何滚动由Cordova mfilechooser插件触发的内存文件浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51260481/

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