from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://www.baidu.com') # 这一步其实没必要,只是为了演示
打开百度后chrome浏览器就关闭掉了
代码的控制台并无任何报错
正常应该保留的
获取selenium的日志
代码
from selenium import webdriver
driver = webdriver.Chrome(service_args=['--verbose'],service_log_path='selenium.log')
driver.get('https://www.baidu.com')
差异日志: 对比正常的环境有2行比较异常
[1669339280.964][INFO]: [9a850cc416a680214e963aab4064f86b] COMMAND QuitAll {}
[1669339281.111][INFO]: [9a850cc416a680214e963aab4064f86b] RESPONSE QuitAll
不得法
https://stackoverflow.com/questions/74567988/browser-quit-automatically-by-using-selenium-on-chrome
提交到stackoverflow上,有人建议
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(service=Service(<chromedriver.exe path>), options=options)
这是实验性质的option
融合到代码中
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from selenium import webdriver
options = Options()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options=options)
driver.get('https://www.baidu.com')
效果是ok的
但以前是ok的,现在这么麻烦,对初学者并不友好
对比之前好的环境,发现差异主要是浏览器、驱动和selenium,把浏览器和驱动都同步到最新版本,环境依然是好的,那差异只有selenium版本(有问题的是selenium 4.6.1,好的版本是selenium4.3.0)
降级版本: 如果你是虚拟环境,请注意执行位置
pip uninstall selenium
pip instsall selenium==4.3.0
再次运行代码,也OK了。
感觉是selenium4.6配合chromedriver驱动出现的问题,firefox在selenium4.6的时候没有该问题。
Playwright是新兴的自动化测试工具,拥有丰富的功能和API,隐藏在众多的爬虫和自动化工具背后,而多模LLM的出现让Playwright可以如虎添翼,自动化智能化的RPA工具预计将会井喷般出现。