AttributeError: 'WebDriver' object has no attribute 'find_element_by_link_text'
时间: 2023-07-31 16:14:10 浏览: 98
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
这个错误提示说明你正在使用的WebDriver对象不支持`find_element_by_link_text()`方法。这个方法通常用于根据链接文字查找链接元素。
可能的原因是你正在使用的WebDriver对象版本过低,建议升级到最新版本。另外,也可以尝试使用其他查找元素的方法,例如`find_element_by_xpath()`或`find_element_by_css_selector()`来代替`find_element_by_link_text()`方法。
阅读全文