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

Mac环境下使用Appium Inspector进行元素定位

时间:2018-12-04 14:44:57      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:系统   android   定位   button   elements   port   .text   pager   src   

 一、摘要

本篇博文介绍在Mac系统上使用AppiumI Inspector进行App页面元素定位

二、Finding elements by xpath

技术分享图片

WebElement digit_9 = driver.findElement(By.xpath("//android.widget.LinearLayout[1]/android.widget.FrameLayout[1]/android.widget.LinearLayout[1]/android.support.v4.view.viewPager[1]/android.widget.LinearLayout[1]/android.widget.LinearLayout[1]/android.widget.Button[3]"));

 三、Finding elements by name

技术分享图片

WebElement editBox = driver.findElement(By.name("IntegerB"));

四、Finding elements by IosUIAutomation

findElements(By.IosUIAutomation(String IosUIAuto));

这个方法会返回一个元素的数组,我们需要通过索引定位到唯一的元素,例如

WebElement editBox = driver.findElements(By.IosUIAutomation(".elements()[0]"));

WebElement editBox = driver.findElements(By.IosUIAutomation(".textFields()[0]"));

Mac环境下使用Appium Inspector进行元素定位

标签:系统   android   定位   button   elements   port   .text   pager   src   

原文地址:https://www.cnblogs.com/davieyang/p/10063590.html

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