python selenium 运行时没有报错,可以正常运行,但是提示:ResourceWarning unclosed的警告

在运行python selenium时没有报错,但是提示:ResourceWarning ,如下在这里插入图片描述
解决办法,可以通过warnings库来忽略掉相关告警。
需要在python里导入 import warnings。
然后在下面加一行代码warnings.simplefilter(“ignore”, ResourceWarning)
就可以解决问题。python selenium 运行时没有报错,可以正常运行,但是提示:ResourceWarning unclosed的警告_第1张图片

你可能感兴趣的:(python selenium 运行时没有报错,可以正常运行,但是提示:ResourceWarning unclosed的警告)