如何从Eclipse和Appium中的动态网格视图获取ID,以及如何单击网格布局中的视图

时间:2019-04-29 17:12:39

标签: eclipse appium appium-android

enter image description here当我尝试自动化移动应用程序时,无法在动态网格视图中找到特定视图的id / xpath / class。我尝试使用UIautomatorviewer,但无法执行。

第一次尝试:

driver.findElementByXPath("android.widget.ImageView[@text ='text']").click();

第二次尝试:

List<MobileElement> mlist = driver.findElements(By.id("package:id/mid_5"));
mllist.get(0).click();

预期的输出是通过使用id / xpath / class单击网格布局中的视图。网格布局视图是在android中动态获取的。

0 个答案:

没有答案