(self)
| 119 | return DisposableStub(lambda: self.hide_actions(), self._page) |
| 120 | |
| 121 | async def hide_actions(self) -> None: |
| 122 | await self._page._channel.send("screencastHideActions", None) |
| 123 | |
| 124 | async def show_overlay(self, html: str, duration: float = None) -> DisposableStub: |
| 125 | result = await self._page._channel.send_return_as_dict( |