python+appium如何获取元素内容的颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+appium如何获取元素内容的颜色相关的知识,希望对你有一定的参考价值。

手机端测试,uiautomatorviewer获取的元素属性如图所示,可以定位到元素及内容,但是无颜色属性,无法获取该元素中文本的颜色,请问大神们,如果实现手机端元素内容颜色的获取,比如A条件下是红色,那么断言的时候,如何实现?

参考技术A #重写元素定位的方法
class Action(object):
#初始化
def __init__(self, se_driver):
self.driver = se_driver

#通过resource-i定位
def findId(self, id):
try:
f = self.driver.find_element_by_id(id)
return f
except Exception as e:
print("未找到%s"%(id))

#通过class定位
def findClassName(self, name):
try:
f = self.driver.find_element_by_class_name(name)
return f
except Exception as e:
print("未找到%s"%(name))

#通过text定位
def findAU(self, name):
try:
f = self.driver.find_element_by_android_uiautomator('text(\"' + name +'\")')
return f
except Exception as e:
print("未找到%s"%(name))

#通过xpath定位
def findXpath(self, xpath):
try:
f = self.driver.find_element_by_xpath(xpath)
return f
except Exception as e:
print("未找到%s"%(xpath))

#通过content-desc
def findAI(self, content_desc):
try:
f = self.driver.find_element_by_access

appium python xpath 定位问题,新手问题。

谢谢大家!我想通过 xpath 来定位 app 里面的 位置,用python 写的,我想 xpath 的写法 应该都是类似的,请帮我看下,图里面 北京 的这个 xpath 如何写啊,我写的 定位不到。谢谢。

按照你的想法,在ListView前面的那个LinearLayout
应该为LinearLayout[1]\ListView[0],至于原因,想想数组的调用

xpath的获取,如果是网页端的很方便
用chrome, 选中你要获取的元素右键鼠标,审查元素。然后在开发者窗口中,定位到的代码处,右键鼠标,有个copy xpath,点击即可

公司限制,莫法给你图片演示了
参考技术A 试试先进入Frame,再定位其Xpath
self.driver.switch_to_frame(frame)
参考技术B 这也是新手问题。

以上是关于python+appium如何获取元素内容的颜色的主要内容,如果未能解决你的问题,请参考以下文章

Python爬虫:详解Appium如何爬取手机App数据以及模拟用户操作手势

Python爬虫:详解Appium如何爬取手机App数据以及模拟用户操作手势

Python爬虫编程思想(133):项目实战--利用Appium抓取微信朋友圈信息

Python爬虫编程思想(133):项目实战--利用Appium抓取微信朋友圈信息

python+appium获取app元素属性值

appium+python+ios怎么获取元素属性