解决python+selenium无法获取提示内容
2021-04-11 05:28
标签:无法 lse 内容 att == fail 条件 pat expec 解决python+selenium无法获取提示内容 标签:无法 lse 内容 att == fail 条件 pat expec 原文地址:https://www.cnblogs.com/qianjunjun/p/13362006.html问题场景:修改查询数据时,页面有提示信息,但是定位到提示信息的位置后,通过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无法获取提示内容
文章链接:http://soscw.com/index.php/essay/74126.html