WebDriver' object has no attribute 'find_element_by_xpath
时间: 2023-11-26 10:02:56 浏览: 115
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
当使用selenium操作浏览器时,常见的一种定位元素的方式就是Xpath定位。但有时候会出现WebDriver object has no attribute 'find_element_by_xpath’的错误提示,意思是WebDriver对象没有该方法。这通常是因为引入selenium包时未正确命名WebDriver导致的。为了解决这个问题,只需要在导入selenium的时候明确地指定webdriver,代码如下: from selenium import webdriver browser = webdriver.Chrome() elem = browser.find_element_by_xpath('xpath')。
阅读全文