pip install selenium
一、准备
1.下载驱动程序
根据自己谷歌浏览器的版本下载对应的包
网址入口:chromedriver
2.导入的模块 webdriver、Service、Options
二、代码
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from time import sleep
from selenium.webdriver.chrome.options import Options
# 创建Options对象并设置参数
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
# 存放在根目录下
s = Service(executable_path='./chromedriver.exe')
# 获取浏览器对象
bro = webdriver.Chrome(service=s, chrome_options=chrome_options)
# 发起请求
bro.get("https://www.baidu.com/")
# 截图
bro.save_screenshot('baidu.png')
# 打印网页源码
print(bro.page_source)
# 打印标题
print(bro.title)
sleep(2)
# 退出
bro.quit()
三、结果