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

Method input_value

playwright/_impl/_page.py:1070–1074  ·  view source on GitHub ↗
(
        self, selector: str, strict: bool = None, timeout: float = None
    )

Source from the content-addressed store, hash-verified

1068 return await self._main_frame.select_option(**params)
1069
1070 async def input_value(
1071 self, selector: str, strict: bool = None, timeout: float = None
1072 ) -> str:
1073 params = locals_to_params(locals())
1074 return await self._main_frame.input_value(**params)
1075
1076 async def set_input_files(
1077 self,

Calls 1

locals_to_paramsFunction · 0.90