TomChen 发表于 2022-9-27 14:14:40

Appium & Python 自动化测试 (二)


6.2 定位方法
# 1.ID定位
# resourceId属性的方法
driver.find_element_by_id(‘com.lizi.app:id/setting_imageView’).click()
#以accessibility_id进行定位,对Android而言,就是content-description属性
driver.find_element_by_accessibility_id(‘push_button’).click()
ClassName 定位
# 2. 定位唯一元素
self.driver.find_element_by_class_name(“android.widget.EditText”)
# 找到所有android.widget.EditText并定位第一个
self.driver.find_elements_by_class_name(“android.widget.EditText”)
# 3.Name 定位
#根据name进行定位,对于android来说,就是text属性
driver.find_element_by_name(u"登 录").click()
4.Xpath 定位
driver.find_elements_by_xpath(‘//android.widget.TextView[@resource-id=“com.mzdk.app:id/item_good_title”]’).click()
6.3 属性方法
# 1.text属性的方法
driver.find_element_by_android_uiautomator(‘new UiSelector().text(“Custom View”)’).click() #text
driver.find_element_by_android_uiautomator(‘new UiSelector().textContains(“View”)’).click() #textContains
driver.find_element_by_android_uiautomator(‘new UiSelector().textStartsWith(“Custom”)’).click() #textStartsWith
driver.find_element_by_android_uiautomator(‘new UiSelector().textMatches(“^Custom.*”)’).click() #textMatches
# 2.class属性的方法
#className
driver.find_element_by_android_uiautomator(‘new UiSelector().className(“android.widget.TextView”).text(“Custom View”)’).click()
#classNameMatches
driver.find_element_by_android_uiautomator(‘new UiSelector().classNameMatches(“.*TextView$”).text(“Custom View”)’).click()
3.resourceId属性的方法
#resourceId
driver.find_element_by_android_uiautomator(‘new UiSelector().resourceId(“android:id/text1”)’)
#resourceIdMatches
driver.find_element_by_android_uiautomator(‘new UiSelector().resourceIdMatches(“.*id/text1$”)’)
4.元素的其他属性
driver.find_element_by_android_uiautomator(‘new UiSelector().clickable(true).text(“Custom View”)’).click()
https://img-blog.csdnimg.cn/a063a8a0d4c5486397d5fd9cec1530ec.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBAdG9tY2hu,size_20,color_FFFFFF,t_70,g_se,x_16








页: [1]
查看完整版本: Appium & Python 自动化测试 (二)