用pyinstaller清除chromedirver控制台窗口

问题描述

我在无头模式下使用chromedriver。我使用pyinstaller将脚本编译为一个exe文件。一切正常,除了我每次打开Chrome页时都会看到以下控制台窗口:

我单独尝试了--windowed--noconsole--windowed--noconsole选项,但我仍然可以看到此窗口。

我怎样才能摆脱它?


解决方案

我找到了以下答案,它非常适合我:

若要避免获取chromedriver的控制台窗口,请打开文件

PythonLibsite-packagesseleniumwebdrivercommonservice.py

和更改

self.process = subprocess.Popen(cmd, env=self.env, close_fds=platform.system() != 'Windows', stdout=self.log_file, stderr=self.log_file, stdin=PIPE)

收件人:

self.process = subprocess.Popen(cmd, stdin=PIPE, stdout=PIPE ,stderr=PIPE, shell=False, creationflags=0x08000000)

相关文章