Active this target (Eg: tab, window, page)
(self)
| 957 | return await self.set_window_state(left, top, width, height) |
| 958 | |
| 959 | async def activate(self): |
| 960 | """Active this target (Eg: tab, window, page)""" |
| 961 | await self.send(cdp.target.activate_target(self.target.target_id)) |
| 962 | |
| 963 | async def bring_to_front(self): |
| 964 | """Alias to self.activate""" |
no test coverage detected