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

Method fill

playwright/_impl/_page.py:916–925  ·  view source on GitHub ↗
(
        self,
        selector: str,
        value: str,
        timeout: float = None,
        noWaitAfter: bool = None,
        strict: bool = None,
        force: bool = None,
    )

Source from the content-addressed store, hash-verified

914 return await self._main_frame.tap(**locals_to_params(locals()))
915
916 async def fill(
917 self,
918 selector: str,
919 value: str,
920 timeout: float = None,
921 noWaitAfter: bool = None,
922 strict: bool = None,
923 force: bool = None,
924 ) -> None:
925 return await self._main_frame.fill(**locals_to_params(locals()))
926
927 def locator(
928 self,

Calls 1

locals_to_paramsFunction · 0.90