window_handles
This property gets a list of all the window handles in the current browser session.
Syntax
py.window_handles -> List[str]
Usage
# this property is mainly used to switch to windows or tabs
# assert that there are two windows - the main website and a new tab
windows = py.window_handles
assert len(windows) == 2
# then switch to the new tab
py.switch_to.window(name_or_handle=windows[1])
Arguments
None
Yields
List[str] - A list of all the window handles in the current browser session.
Last updated