作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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/
我是一名优秀的程序员,十分优秀!