MCPcopy Index your code
hub / github.com/microsoft/playwright-python / goto

Method goto

playwright/_impl/_page.py:553–560  ·  view source on GitHub ↗
(
        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,

Calls 1

locals_to_paramsFunction · 0.90