码迷,mamicode.com
首页 > 移动开发 > 详细

appium查看控件的方法

时间:2015-02-03 14:56:31      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

1.通过ID查找

  查找1个:WebElement el=driver.findElement(By.id("com.aurora:id/aurora_action_bar_item"));

  列表:      List<WebElement> e3=driver.findElements(By.id("com.aurora:id/aurora_menu_item_text")); 可能会报错

2.通过name查找

列表:

单个:WebElement el = driver.findElement(By.name("Add Contact"));

        driver.findElementByName("Save").click();

3.通过uiautomator定位

查找1个:driver.findElementByAndroidUIAutomator("new UiSelector().clickable(true)").click(); 

             el = driver.findElementByAndroidUIAutomator("new UiSelector().text(\"Add note\")");

列表:driver.findElementsByAndroidUIAutomator("new UiSelector().clickable(true)").click();

4.通过Classname查找

列表:List<WebElement> textFieldsList = driver.findElementsByClassName("android.widget.EditText");

单个:el = driver.findElementByClassName("android.widget.TextView");

5.通过content-desc(AccessibilityId)查找

单个:el = driver.findElementByAccessibilityId("menu_add_note_description"); 

列表:findElementsByAccessibilityId()

6.findElementByTagName

el = driver.findElementByXPath("//android.widget.TextView[contains(@text,‘Add note‘)]"); 

appium查看控件的方法

标签:

原文地址:http://www.cnblogs.com/penghong2014/p/4269862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!