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

Method fill

playwright/_impl/_element_handle.py:195–204  ·  view source on GitHub ↗
(
        self,
        value: str,
        timeout: float = None,
        noWaitAfter: bool = None,
        force: bool = None,
    )

Source from the content-addressed store, hash-verified

193 )
194
195 async def fill(
196 self,
197 value: str,
198 timeout: float = None,
199 noWaitAfter: bool = None,
200 force: bool = None,
201 ) -> None:
202 await self._channel.send(
203 "fill", self._frame._timeout, locals_to_params(locals())
204 )
205
206 async def select_text(self, force: bool = None, timeout: float = None) -> None:
207 await self._channel.send(

Callers

nothing calls this directly

Calls 2

locals_to_paramsFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected