appium点击坐标没有响应

C:\Python27\Lib\site-packages\robotframework_appiumlibrary-1.4.1-py2.7.egg\Appium2Library\keywords



    def click_a_point(self, x=0, y=0):

        """ Click on a point"""
        self._info("Clicking on a point (%s,%s)." % (x,y))
        driver = self._current_application()
        action = TouchAction(driver)
        try:
            action.press(x=float(x), y=float(y)) .release().perform()
        except:
            assert False, "Can't click on a point at (%s,%s)" % (x,y)

你可能感兴趣的:(appium点击坐标没有响应)