I\'m modifying some code to be compatible between Python 2 and Python 3, but have observed a warning in unit test output.
Python 2
Python 3
/Library/Fram
This is the best solution if you are not much concern about warnings
Just import warnings and add this line where your driver is initiating -
import warnings warnings.filterwarnings(action="ignore", message="unclosed", category=ResourceWarning)