Gets the source of the current page.
(self)
| 638 | |
| 639 | @property |
| 640 | def page_source(self) -> str: |
| 641 | """Gets the source of the current page.""" |
| 642 | return self.execute(Command.GET_PAGE_SOURCE)["value"] |
| 643 | |
| 644 | def close(self) -> None: |
| 645 | """Closes the current window.""" |