解决selenium的WebDriver object has no attribute 'find_element_by_xpath’问题
在使用selenium操作浏览器时,常见的一种定位元素的方式就是Xpath定位。但有时候会出现WebDriver object has no attribute 'find_element_by_xpath’的错误提示,意思是WebDriver对象没有该方法。
这通常是因为引入selenium包时未正确命名WebDriver导致的。为了解决这个问题,只需要在导入selenium的时候明确地指定webdriver,代码如下:文章来源:https://www.toymoban.com/news/detail-684864.html
from selenium import webdriver
browser = webdriver.Chrome()
elem = browser.find_element_by_xpath('xpath')
通过按照上述方式命名webdriver对象,即可避免WebDriver object has no attribute 'find_element_by_xpath’问题。文章来源地址https://www.toymoban.com/news/detail-684864.html
到了这里,关于解决selenium的WebDriver object has no attribute ‘find_element_by_xpath‘问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!