目录
1、确认浏览器的版本
2、找到对应的chromedriver版本
3、解压chromedriver文件,放置chrome的安装目录下
4、设置系统属性
5、确认chromedriver是否安装成功及解决方式
from selenium import webdriver
chromedriver_path = r"C:\Users\AppData\Local\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(chromedriver_path)
# 登录百度
def main():
driver.get("https://baidu.com/")
if __name__ == '__main__':
main()
pip --default-timeout=100 install selenium==4.1.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
2.1 把driver放在函数外,为全局不会闪退
from selenium import webdriver
chromedriver_path = r"C:\Users\AppData\Local\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(chromedriver_path)
# 登录百度
def main():
driver.get("https://baidu.com/")
if __name__ == '__main__':
main()
2.2 不设置driver为全局,放在函数内会闪退
from selenium import webdriver
# 登录百度
def main():
chromedriver_path =r"C:\Users\AppData\Local\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(chromedriver_path)
driver.get("https://baidu.com/")
if __name__ == '__main__':
main()
2.3 也可以把driver放在函数内,只要设置为全局变量就可以
from selenium import webdriver
# 登录百度
def main():
global driver # 设置全局变量
chromedriver_path =r"C:\Users\AppData\Local\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(chromedriver_path)
driver.get("https://baidu.com/")
if __name__ == '__main__':
main()