解决python+selenium无法获取提示内容

Posted 千君君

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决python+selenium无法获取提示内容相关的知识,希望对你有一定的参考价值。

问题场景:修改查询数据时,页面有提示信息,但是定位到提示信息的位置后,通过ele.text或者其他方法都无法获取具体的提示内容;最后通过get_attribute(‘innerHTML‘)搞定。
示例:
ele = self.driver.find_element_by_xpath("//div[2]/table/tbody/tr/td")
msg = ele.get_attribute(‘innerHTML‘)
if msg == ‘无符合条件的记录‘:
actual = ‘search-fail‘
else:
actual = ‘search-success‘
self.assertEqual(actual,expect)

以上是关于解决python+selenium无法获取提示内容的主要内容,如果未能解决你的问题,请参考以下文章

解决python2.7无法安装selenium的问题

selenium无法获取到标签的文本内容(text)的解决方法

selenium无法获取到标签的文本内容(text)的解决方法

selenium无法获取到标签的文本内容(text)的解决方法

使用 selenium 获取 Chrome Devtools 内容的 Python 脚本

Python Selenium 无法从 mpob 网站检索标签内容