简体   繁体   中英

Python Selenium - ResourceWarning: Enable tracemalloc to get the object allocation traceback

I am using BrowserStack to run Selenium scripts in Python. Keep in mind that I am new in Python, so maybe there is a simple solution to this that I am not seeing.

You can see the code here

When I run it, it always shows the following: PyCharm 转储

How to I solve the "ResourceWarning: Enable tracemalloc to get the object allocation traceback" error? Do I need to install some package, enable something in the settings, or..? The tests always execute, as you can see at the bottom, but these Warnings always appear.

As mentioned in here !

This ResourceWarning means that you opened a file, used it, but then forgot to close the file. Python closes it for you when it notices that the file object is dead, but this only occurs after some unknown time has elapsed. Thus in recent versions, Python also prints a ResourceWarning when it does that.

The tracemalloc module is a debug tool to trace memory blocks allocated by Python. You may refer to this for more details: https://docs.python.org/3/library/tracemalloc.html

Hence it is just a warning which is asking you to enable tracemalloc and not an error. This won't affect your test case.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM