An alias for touch. :param x: x coordinate :param y: y coordinate :param selector: the selector, could be ``None`` :return: the result of the operation
(self, x=-1, y=-1, selector=None)
| 4118 | return None |
| 4119 | |
| 4120 | def click(self, x=-1, y=-1, selector=None): |
| 4121 | """ |
| 4122 | An alias for touch. |
| 4123 | |
| 4124 | :param x: x coordinate |
| 4125 | :param y: y coordinate |
| 4126 | :param selector: the selector, could be ``None`` |
| 4127 | :return: the result of the operation |
| 4128 | """ |
| 4129 | |
| 4130 | self.touch(x=x, y=y, selector=selector) |
| 4131 | |
| 4132 | def touch(self, x=-1, y=-1, selector=None): |
| 4133 | if self.uiAutomatorHelper: |