Gets the source of the current page.
(self)
| 627 | |
| 628 | @property |
| 629 | def page_source(self) -> str: |
| 630 | """Gets the source of the current page.""" |
| 631 | return self.execute(Command.GET_PAGE_SOURCE)["value"] |
| 632 | |
| 633 | def close(self) -> None: |
| 634 | """Closes the current window.""" |