Returns the handles of all windows within the current session.
(self)
| 658 | |
| 659 | @property |
| 660 | def window_handles(self) -> list[str]: |
| 661 | """Returns the handles of all windows within the current session.""" |
| 662 | return self.execute(Command.W3C_GET_WINDOW_HANDLES)["value"] |
| 663 | |
| 664 | def maximize_window(self) -> None: |
| 665 | """Maximizes the current window that webdriver is using.""" |