环境:Python3.6、selenium3、谷歌浏览器
当我们定位这个位置text时显示的数据是不全的,那我们就需要定位title标签,但是尝试定位一直没成功,后来发现xpath的另一个功能那就是.get_attribute('title')这样就可以定位到title的数据了,下面我们看代码:
bro.find_element_by_xpath('//*[@id="levelReport"]/......').get_attribute('title')
来源:oschina
链接:https://my.oschina.net/u/4358286/blog/4657778