Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 dump

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.

like image 532
Vedran Korponajić Avatar asked Mar 31 '20 07:03

Vedran Korponajić


2 Answers

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.

like image 130
Berraz.red Avatar answered Oct 31 '22 19:10

Berraz.red


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.

like image 30
Anthony Fernandes Avatar answered Oct 31 '22 19:10

Anthony Fernandes