标签:and resource 系统 str email end 元素 nbsp 用户
使用方法 find_element_by_android_uiautomator() 可以运用UiAutomator元素定位。
id定位是根据元素的resource-id属性来进行定位,使用 UiSelector().resourceId()方法即可。
by_Uiautomator.py
from find_element.capability import driver
driver.find_element_by_android_uiautomator\
(‘new UiSelector().resourceId("com.tal.kaoyan:id/login_email_edittext")‘).send_keys(‘zxw1234‘)
driver.find_element_by_android_uiautomator\
(‘new UiSelector().resourceId("com.tal.kaoyan:id/login_password_edittext")‘).send_keys(‘zxw123456‘)
driver.find_element_by_android_uiautomator\
(‘new UiSelector().resourceId("com.tal.kaoyan:id/login_login_btn")‘).click()
text定位就是根据元素的text属性值来进行定位,new UiSelector()
driver.find_element_by_android_uiautomator\
(‘new UiSelector().text("请输入用户名")‘).send_keys(‘zxw1234‘)
与Appium class定位方式一样,也是根据元素的class属性来进行定位。
driver.find_element_by_android_uiautomator\
(‘new UiSelector().className("android.widget.EditText")‘).send_keys(‘zxw1234‘)
标签:and resource 系统 str email end 元素 nbsp 用户
原文地址:https://www.cnblogs.com/xuzhongtao/p/9723185.html