(self, **kwargs)
| 4109 | return [v for v in self.views if (v.containsPoint(point) and _filter(v))] |
| 4110 | |
| 4111 | def findObject(self, **kwargs): |
| 4112 | if self.uiAutomatorHelper: |
| 4113 | if DEBUG_UI_AUTOMATOR_HELPER: |
| 4114 | print("Finding object with %s through UiAutomatorHelper" % kwargs, file=sys.stderr) |
| 4115 | return self.uiAutomatorHelper.ui_device.find_object(**kwargs) |
| 4116 | else: |
| 4117 | warnings.warn("findObject only implemented using UiAutomatorHelper. Use ViewClient.findView...() instead.") |
| 4118 | return None |
| 4119 | |
| 4120 | def click(self, x=-1, y=-1, selector=None): |
| 4121 | """ |
no test coverage detected