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
{{ message }}
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
class new_window_is_opened(object):
"""
An expectation that a new window will be opened and have the number of windows handles increase
"""
def __init__(self, current_handles):
self.current_handles = current_handles
def __call__(self, browser):
return len(browser._driver_instance.window_handles)) > len(self.current_handles)
new_window_is_opened
to be continued
The text was updated successfully, but these errors were encountered: