安装 selenium
安装 selenium
查看谷歌版本
Chrome驱动下载地址(跟谷歌版本一定要对上): http://chromedriver.storage.googleapis.com/index.html
下载好以后
放入项目的根目录
创建文件并安装引入selenium
打开浏览器百度网站 案例
# 1.导入 from selenium.webdriver.chrome.service import Service from selenium import webdriver # 2. 创建浏览器操作对象 path = Service('chromedriver.exe') browser = webdriver.Chrome(service=path) # 3 访问网站 url = 'https://www.baidu.com' browser.get(url)
content = browser.page_source #打开页面的源代码
print(content)
input('input阻止浏览器退出')