(self, x: int, y: int)
| 626 | return numpy.zeros((1080, 1920, 3), dtype=numpy.uint8) |
| 627 | |
| 628 | def click(self, x: int, y: int) -> bool: |
| 629 | print(f" on MyController.click: {x}, {y}") |
| 630 | self.count += 1 |
| 631 | return True |
| 632 | |
| 633 | def swipe(self, x1: int, y1: int, x2: int, y2: int, duration: int) -> bool: |
| 634 | print(f" on MyController.swipe: {x1}, {y1} -> {x2}, {y2}, {duration}") |
nothing calls this directly
no outgoing calls
no test coverage detected