使用python的selenium库,报错AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_xpath‘

这个问题和python安装的Selenium库相关。Selenium库4.3.0版本没有

find_element_by_xpath这个属性了。因为我要写Python的爬虫定位网页元素XPath法,所以我重新安装了Selenium库的3.3.0版本。安装方法如下

 File →Settings

使用python的selenium库,报错AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_xpath‘_第1张图片

下一步:Projecet→Python Interpreter→ +

使用python的selenium库,报错AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_xpath‘_第2张图片

 下一步:输入Selenium进行检索→ 选择 3.3.0版本

使用python的selenium库,报错AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_xpath‘_第3张图片

下一步:点击 INSTALL PACKAGE

 使用python的selenium库,报错AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_xpath‘_第4张图片

。 安装成功后,重启一下,运行代码,问题就解决

你可能感兴趣的:(python,selenium,爬虫)