使用selenium打开谷歌
时间: 2023-05-31 20:05:03 浏览: 86
如何使用selenium启动谷歌Chrome浏览器
以下是打开谷歌的Python代码示例:
```python
from selenium import webdriver
# 创建谷歌浏览器对象
driver = webdriver.Chrome()
# 打开谷歌网站
driver.get("https://www.google.com")
# 关闭浏览器
driver.quit()
```
需要注意的是,你需要先下载并安装Chrome浏览器,以及Chrome驱动程序,并将Chrome驱动程序的路径添加到系统的环境变量中。如果你没有安装Chrome浏览器或者Chrome驱动程序,可以在官网下载:https://www.google.com/chrome/ 和 https://sites.google.com/a/chromium.org/chromedriver/downloads。
阅读全文