Closes the current window.
(self)
| 631 | return self.execute(Command.GET_PAGE_SOURCE)["value"] |
| 632 | |
| 633 | def close(self) -> None: |
| 634 | """Closes the current window.""" |
| 635 | self.execute(Command.CLOSE) |
| 636 | |
| 637 | def quit(self) -> None: |
| 638 | """Quits the driver and closes every associated window.""" |