- 是因为selenium版本不一致
- 解决办法如下:
- 1,换旧版本,即4.几之前的版本
- 2,将根据元素定位方式的元素改为大写
eg:
报错代码:
driver.find_element_by_xpath(“/html/body/div[3]/div[1]/div[2]/ul/li[1]/a”)
修改后的代码:
driver.find_element(By.XPATH,‘/html/body/div[3]/div[1]/div[2]/ul/li[1]/a’) - 这里提供一些可以直接使用的方式
driver.find_element(By.ID,'id')
driver.find_element(By.XPATH,'xpath')
其实只需要把上述代码中的元素定位方式改成你需要的方式(PS:一定要大写)
文章来源地址https://www.toymoban.com/news/detail-855892.html
文章来源:https://www.toymoban.com/news/detail-855892.html
到了这里,关于【selenium报错】AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_link_text‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!