Closes the current window.
(self)
| 642 | return self.execute(Command.GET_PAGE_SOURCE)["value"] |
| 643 | |
| 644 | def close(self) -> None: |
| 645 | """Closes the current window.""" |
| 646 | self.execute(Command.CLOSE) |
| 647 | |
| 648 | def quit(self) -> None: |
| 649 | """Quits the driver and closes every associated window.""" |