AttributeError: 'WebDriver' object has no attribute 'find_elements_by_xpath'
时间: 2023-10-07 18:13:46 浏览: 85
这个错误是因为 `WebDriver` 对象没有 `find_elements_by_xpath` 属性。正确的方法是使用 `WebDriver` 对象的 `find_elements` 方法,然后指定 `By.XPATH` 作为参数,如下所示:
```python
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
# 设置 Chrome 为无界面模式
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
# 启动 Chrome 浏览器
browser = webdriver.Chrome(options=chrome_options)
# 打开网页并监控
browser.get('https://www.example.com')
while True:
# 检查网页中的元素是否存在
if browser.find_elements(By.XPATH, '//div[@class="example"]'):
print('网页中的元素已经出现!')
break
# 关闭浏览器
browser.quit()
```
在这个代码中,我们使用 `from selenium.webdriver.common.by import By` 来导入 `By` 类,然后在 `find_elements` 方法中指定 `By.XPATH` 作为参数来查找特定的元素。这样就可以避免 `WebDriver` 对象没有 `find_elements_by_xpath` 属性的错误。
阅读全文