欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python appium运行时没有报错,但是提示:ResourceWarning unclosed

程序员文章站 2022-07-12 21:32:20
...

我在运行python appium时没有报错,但是提示:

ResourceWarning: unclosed <socket.socket [closed] fd=464

如下图所示:

python appium运行时没有报错,但是提示:ResourceWarning unclosed

虽然没啥影响,但是看起来很不爽,我找了很多资料,终于找到了原因。
需要在python里导入 import warnings。
然后在下面加一行代码warnings.simplefilter(“ignore”, ResourceWarning)
就可以解决问题。

python appium运行时没有报错,但是提示:ResourceWarning unclosed