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

Method bounding_box

playwright/_impl/_locator.py:132–136  ·  view source on GitHub ↗
(self, timeout: float = None)

Source from the content-addressed store, hash-verified

130 return self._frame.page
131
132 async def bounding_box(self, timeout: float = None) -> Optional[FloatRect]:
133 return await self._with_element(
134 lambda h, _: h.bounding_box(),
135 timeout,
136 )
137
138 async def check(
139 self,

Calls 1

_with_elementMethod · 0.95