AttributeError: 'WebDriver' object has no attribute 'find_element_by_link_text'
时间: 2023-08-01 07:06:11 浏览: 114
WebDriver-Object
5星 · 资源好评率100%
这个错误通常是因为您正在使用错误的Webdriver或您的代码中缺少必要的导入语句。请尝试使用正确的Webdriver并确保您已经正确导入了selenium库。您可以尝试使用以下导入语句:
```python
from selenium import webdriver
from selenium.webdriver.common.by import By
```
并使用以下代码来查找链接文本:
```python
driver.find_element(By.LINK_TEXT, 'link_text')
```
其中 `link_text` 是您要查找的链接的文本。
阅读全文