完美解决Pyinstaller打包selenium去除driver黑框问题。

问题描述

用Pyinstaller打包后,运行exe文件时总是出现driver控制台窗口,如下图

在这里插入图片描述

希望程序运行时,隐藏driver控制台窗口

下面针对以上问题给出解决方案

首先找到selenium包源码文件service.py中的start函数,文件路径如下:
Lib\site-packages\selenium\webdriver\common\service.py
找到文件中start函数,具体代码如下:

def start(self):
    """
    Starts the Service.

    :Exceptions:
     - WebDriverException : Raised either when it can't start the service
       or when it can't connect to the service
    """
    try:
        cmd = [self.path]
        cmd.extend(self.command_line_args())
        self.process = subprocess.Popen(cmd, env=self.env,
                                        close_fds=system() != 'Windows',
                                        stdout=self.log_file,
                                        stderr=self.log_file,
                                        stdin=PIPE,
                                        creationflags=self.creationflags)
    except TypeError:
        raise

方案①

修改start函数参数creationflags=self.creationflags为creationflags=134217728,具体代码如下:

def start(self):
    """
    Starts the Service.
    
    :Exceptions:
     - WebDriverException : Raised either when it can't start the service
       or when it can't connect to the service
    """
    try:
        cmd = [self.path]
        cmd.extend(self.command_line_args())
        self.process = subprocess.Popen(cmd, env=self.env,
                                        close_fds=platform.system() != 'Windows',
                                        stdout=self.log_file,
                                        stderr=self.log_file,
                                        stdin=PIPE,
                                        creationflags=134217728)
    except TypeError:
        raise

方案②

在services.py开头添加一行代码

from win32process import CREATE_NO_WINDOW

然后修改参数creationflags=self.creationflags为creationflags=CREATE_NO_WINDOW,具体代码如下:

def start(self):
    """
    Starts the Service.
    
    :Exceptions:
     - WebDriverException : Raised either when it can't start the service
       or when it can't connect to the service
    """
    try:
        cmd = [self.path]
        cmd.extend(self.command_line_args())
        self.process = subprocess.Popen(cmd, env=self.env,
                                        close_fds=platform.system() != 'Windows',
                                        stdout=self.log_file,
                                        stderr=self.log_file,
                                        stdin=PIPE,
                                        creationflags=CREATE_NO_WINDOW)
    except TypeError:
        raise

实验环境

以上实验环境:
python 3.7
pyinstaller 5.1
重要声明:
python 3.9不适用以上方法
python 3.8(小编未尝试)
python 3.7及以下应该没问题

#用心交流,共获提升,转载请注明出处。
  • 6
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 6
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值