DeprecationWarning: use options instead of chrome_options browser = webdriver.Chrome(chrome_options=chrome_options)
时间: 2024-05-18 12:13:10 浏览: 250
这是因为 `chrome_options` 参数在较新的版本的 Selenium 中已经被弃用了,取而代之的是 `options` 参数。如果你使用较新的版本的 Selenium,可以将代码修改为如下所示:
```python
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
# 设置 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()
```
在这个代码中,我们将 `chrome_options` 参数替换为了 `options` 参数,以适应较新版本的 Selenium。
阅读全文