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

Method select_text

playwright/_impl/_locator.py:634–639  ·  view source on GitHub ↗
(self, force: bool = None, timeout: float = None)

Source from the content-addressed store, hash-verified

632 )
633
634 async def select_text(self, force: bool = None, timeout: float = None) -> None:
635 params = locals_to_params(locals())
636 return await self._with_element(
637 lambda h, timeout: h.select_text(**{**params, "timeout": timeout}),
638 timeout,
639 )
640
641 async def set_input_files(
642 self,

Calls 2

_with_elementMethod · 0.95
locals_to_paramsFunction · 0.90