Appium Android单击ScrollView无效

时间:2018-06-20 17:56:37

标签: java testng scrollview appium appium-android

我有一个问题, 当appium在scrollView上选择过滤后的数据并单击目标值时,它返回

  

[HTTP] <-POST   / wd / hub / session / 47eafd00-6413-4696-81a0-441b3a819b3b / element 200495   毫秒-87

但是,当我在设备上看到时,它尚未被点击。 这是代码段

通过bumnInput = By.xpath(“ // * [@ class ='android.widget.EditText'和@ text ='Please fill']”);         waitForVisibilityOf(bumnInput);         driver.findElement(bumnInput).sendKeys(“ Telekom”);;

    By bumnList = By.xpath("//*[@class='android.widget.TextView' and @text='Telekomunikasi 1']");
    waitForVisibilityOf(bumnList);
    driver.findElement(bumnList).click();

有什么线索或建议吗?

0 个答案:

没有答案