String Organization = new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text(\"textName\").instance(0)); driver.findElement(AppiumBy.androidUIAutomator(Organization)).click();
我试图向下滚动,直到它滚动的元素,但不能点击
ffx8fchx1#
String Organization = "new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text("textName").instance(0))"; driver.findElement(AppiumBy.androidUIAutomator(Organization)); driver.findElement(By.id("Your_Selector_ID")).click();
1条答案
按热度按时间ffx8fchx1#