From f17e775a2cec64ef7f21bbe96173bec10618985a Mon Sep 17 00:00:00 2001 From: M Pacer Date: Thu, 22 Mar 2018 15:15:21 -0700 Subject: [PATCH] add jupyter_server_info to authenticated browser fixture --- notebook/tests/selenium/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/notebook/tests/selenium/conftest.py b/notebook/tests/selenium/conftest.py index 215d6b790..d7227b12b 100644 --- a/notebook/tests/selenium/conftest.py +++ b/notebook/tests/selenium/conftest.py @@ -95,5 +95,6 @@ def selenium_driver(): @pytest.fixture def authenticated_browser(selenium_driver, notebook_server): + selenium_driver.jupyter_server_info = notebook_server selenium_driver.get("{url}?token={token}".format(**notebook_server)) return selenium_driver