(self, timeout: float = None)
| 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, |