You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is causing a FutureWarning under splinter 0.19:
…/splinter/driver/webdriver/cookie_manager.py:24: FutureWarning: Deleting all cookies via CookieManager.delete() with no arguments has been deprecated. use CookieManager.delete_all().
Pytest-Splinter's browser fixture deletes cookies by calling
browser.cookies.delete()
:pytest-splinter/pytest_splinter/plugin.py
Lines 609 to 615 in 47141cd
This is causing a FutureWarning under splinter 0.19:
Splinter's documentation has been updated to recommend calling
delete_all()
: https://splinter.readthedocs.io/en/latest/cookies.html#delete-all-cookiesThe text was updated successfully, but these errors were encountered: