Skip to content

Commit

Permalink
added the ui_sesion_id attribute for video-session (#1038)
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarkhatavkar committed Nov 27, 2023
1 parent d1e9bbd commit 598c876
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions airgun/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ def __init__(
self._login = login
self.navigator = None
self.browser = None
self.ui_session_id = None

def __call__(self, user=None, password=None, session_cookie=None, url=None, login=None):
"""Stores provided values. This allows tests to provide additional
Expand Down Expand Up @@ -271,6 +272,7 @@ def _prepare_browser(self, url):
selenium_browser = self._factory.get_browser()
self.browser = AirgunBrowser(selenium_browser, self)
LOGGER.info(f'Setting initial URL to {url}')
self.ui_session_id = selenium_browser.session_id

self.browser.url = url

Expand Down

0 comments on commit 598c876

Please sign in to comment.