6.25__app定位元素(4)


app定位元素

实战:

from appium  import   webdriver
from time import *
cs={
'platformName':'Android',#平台系统: Android or los
'deviceName':'OPPO R11',#设备名称SM-G9350
'platformVersion':'android-4.4W', #平台版本
'appPackage':'com.baidu.yuedu',#包名
'appActivity':'com.baidu.yuedu.splash.SplashActivity', #activity
'unicodeKeyboard': True, #使用unicode编码方式发送字符串
}
d=webdriver.Remote('http://127.0.0.1:4723/wd/hub',cs)
sleep(10)
#id定位:
d.find_element_by_id("com.baidu.yuedu:id/myyuedu_gridview").click() #点击书架
sleep(3)

#xpath定位:
d.find_element_by_xpath("//android.widget.TextView[@text='书架']").click()
sleep(4)
d.find_element_by_xpath("//android.widget.TextView[@text='图书']").click()

#txt定位
(1)d.find_element_by_android_uiautomator('new UiSelector().text("书架")').click()
sleep(4)
d.find_element_by_android_uiautomator('new UiSelector().text("图书")').click()
(2)包含:
d.find_element_by_android_uiautomator('new UiSelector().textContains("图")').click()
class定位:


操作步骤:找到对象->操作对象

2.四中匹配关系的介绍 
(1)完全匹配 
(2)包含匹配 
(3)正则匹配 
(4)起始匹

例子:完全匹配:应用

UiSelector selector=new UiSelector().description("应用");
包含匹配:应
UiSelector selector=new UiSelector().descriptionContains("应");
正则匹配
UiSelector selector=new UiSelector().descriptionMatches("应.*");
起始匹配
UiSelector selector=new UiSelector().descriptionStartsWith("应");

原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/273291.html

(0)
上一篇 2022年7月10日
下一篇 2022年7月10日

相关推荐

发表回复

登录后才能评论