(self, orientation: str = None, reveal: bool = None, dwell: float = 0.8)
| 98 | |
| 99 | class DockCapture: |
| 100 | def __init__(self, orientation: str = None, reveal: bool = None, dwell: float = 0.8): |
| 101 | self.orientation = orientation or get_dock_orientation() |
| 102 | self.reveal = reveal if reveal is not None else get_dock_autohide() |
| 103 | self.dwell = dwell |
| 104 | |
| 105 | def capture(self, max_depth=None, output_screenshot_dir=None): |
| 106 | store_screen_scaling_factor() |
nothing calls this directly
no test coverage detected