python加上appium重写元素定位的方法

编辑:光环大数据 来源: 互联网 时间: 2017-11-13 14:22 阅读:

  python加上appium重写元素定位的方法。

在实际使用appium的过程中,元素定位是必不可少的一步,但是为了装个懒子,也为了看起来更加的美观,也为了省事,所以还是对这些定位方式做一下封装吧

而且有一个好处就是,如果在实际运行过程中,自己的定位出现问题,也能及时发现

#重写元素定位的方法

classAction(object):

#初始化

def__init__(self,se_driver):

self.driver=se_driver

#通过resource-i定位

deffindId(self,id):

try:

f=self.driver.find_element_by_id(id)

returnf

exceptExceptionase:

print("未找到%s"%(id))

#通过class定位

deffindClassName(self,name):

try:

f=self.driver.find_element_by_class_name(name)

returnf

exceptExceptionase:

print("未找到%s"%(name))

#通过text定位

deffindAU(self,name):

try:

f=self.driver.find_element_by_android_uiautomator('text(\"'+name+'\")')

returnf

exceptExceptionase:

print("未找到%s"%(name))

#通过xpath定位

deffindXpath(self,xpath):

try:

f=self.driver.find_element_by_xpath(xpath)

returnf

exceptExceptionase:

print("未找到%s"%(xpath))

#通过content-desc

deffindAI(self,content_desc):

try:

f=self.driver.find_element_by_accessibility_id(content_desc)

returnf

exceptExceptionase:

print("未找到%s"%(content_desc))

 

       Python培训Python培训班Python培训机构,就选光环大数据!


大数据培训、人工智能培训、Python培训、大数据培训机构、大数据培训班、数据分析培训、大数据可视化培训,就选光环大数据!光环大数据,聘请专业的大数据领域知名讲师,确保教学的整体质量与教学水准。讲师团及时掌握时代潮流技术,将前沿技能融入教学中,确保学生所学知识顺应时代所需。通过深入浅出、通俗易懂的教学方式,指导学生更快的掌握技能知识,成就上万个高薪就业学子。 更多问题咨询,欢迎点击------>>>>在线客服

你可能也喜欢这些

在线客服咨询

领取资料

X
立即免费领取

请准确填写您的信息

点击领取
#第三方统计代码(模版变量) '); })();
'); })();