使用selenium、webdriver打开谷歌浏览器,登录页面后闪退,但是版本号是对应的,是因为driver的全局变量问题
1、不设置driver为全局,放在函数内(会闪退)
from selenium import webdriver# 登陆百度
def main():
chromedriver_path = r"C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(executable_path=chromedriver_path)
# 打开页面
page = driver.get('https://www.baidu.com/')if __name__ == "__main__":
main()
2、把driver放在函数外,为全局(不会闪退)
from selenium import webdriverchromedriver_path = r"C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(executable_path=chromedriver_path)
# 登陆百度
def main():
# 打开页面
page = driver.get('https://www.baidu.com/')if __name__ == "__main__":
main()
3、也可以把driver放在函数内,只要设置为全局变量就可以
from selenium import webdriver# 登陆百度
def main():
global driver
chromedriver_path = r"C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(executable_path=chromedriver_path)
# 打开页面
page = driver.get('https://www.baidu.com/')if __name__ == "__main__":
main()
推荐阅读
- 爬虫|若想拿下爬虫大单,怎能不会逆向爬虫,价值过万的逆向爬虫教程限时分享
- python|尚硅谷python爬虫(二)-解析方法
- web挖洞|HACK学习黑帽子Python--漏洞检测脚本快速编写
- Pyecharts|Pyecharts 猎聘招聘数据可视化
- Python爬虫笔记|Python爬虫学习笔记_DAY_17_Python爬虫之使用cookie绕过登录的介绍【Python爬虫】