(
self,
html: str,
timeout: float = None,
waitUntil: DocumentLoadState = None,
)
| 543 | return await self._main_frame.content() |
| 544 | |
| 545 | async def set_content( |
| 546 | self, |
| 547 | html: str, |
| 548 | timeout: float = None, |
| 549 | waitUntil: DocumentLoadState = None, |
| 550 | ) -> None: |
| 551 | return await self._main_frame.set_content(**locals_to_params(locals())) |
| 552 | |
| 553 | async def goto( |
| 554 | self, |