Method
goto
(
self,
url: str,
timeout: float = None,
waitUntil: DocumentLoadState = None,
referer: str = None,
)
Source from the content-addressed store, hash-verified
| 551 | return await self._main_frame.set_content(**locals_to_params(locals())) |
| 552 | |
| 553 | async def goto( |
| 554 | self, |
| 555 | url: str, |
| 556 | timeout: float = None, |
| 557 | waitUntil: DocumentLoadState = None, |
| 558 | referer: str = None, |
| 559 | ) -> Optional[Response]: |
| 560 | return await self._main_frame.goto(**locals_to_params(locals())) |
| 561 | |
| 562 | async def reload( |
| 563 | self, |