gpt4 book ai didi

java - Appium 滚动操作发生两次

转载 作者:行者123 更新时间:2023-12-01 18:32:04 25 4
gpt4 key购买 nike

我使用下面的代码在 iOS 设备上滚动屏幕,但它滚动了两次。我在屏幕中有多个同名元素,但我想滚动到第一个元素。

 JavascriptExecutor js = (JavascriptExecutor) driver;
HashMap<String, String> scrollObject = new HashMap<String, String>();
scrollObject.put("direction", "down");
scrollObject.put("xpath", "//XCUIElementTypeStaticText[@name='Max threshold (L/s)']");
js.executeScript("mobile: scroll", scrollObject);

最佳答案

将序列号添加到您的xpath:

scrollObject.put("xpath", "(//XCUIElementTypeStaticText[@name='Max threshold (L/s)'])[1]");

关于java - Appium 滚动操作发生两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60144298/

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