Python selenium Chrome 驱动程序无头模式和pythonw.exe

Python selenium Chrome driver headless mode and pythonw.exe

提问人:Nader Shehata 提问时间:12/16/2022 更新时间:12/16/2022 访问量:78

问:

我有一个 python 脚本,我想添加到 Windows 任务计划程序中,当我尝试python.exe使用可执行路径计划程序时,它运行良好,但如您所知,每次脚本运行时都会出现提示窗口。

这里的问题是,当我尝试在没有提示窗口的情况下使用pythonw.exe在后台运行脚本时,python 的提示窗口消失了,是的,但屏幕上出现了另一个Chromedriver.exe提示窗口。

我认为这可能是由传递给 chrome 驱动程序的选项参数引起的,如下所示:

options = Options()
options.add_argument('--headless')
options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chrome_driver, options=options)

但这也不合理,因为当我只使用python.exe可执行文件时,它运行良好。那么,请问有什么解决方案呢?

python selenium-chromedriver windows-task-scheduler

评论


答: 暂无答案