📌  相关文章
📜  如何为 selenium python 代码示例安装驱动程序

📅  最后修改于: 2022-03-11 14:45:10.287000             🧑  作者: Mango

代码示例1
#in the terminal add the following
pip install webdriver-manager

#in the script add the following to the imports
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager

#then add the following line to create the page
web = webdriver.chrome(chromeDriverManager().install())