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

时间:2018-07-10 08:26:01

标签: android cordova appium

我想在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();

1 个答案:

答案 0 :(得分:2)

以下代码可用于滚动浏览屏幕。

我们可以在硒中使用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();