YiluphpADB

根据坐标点点击屏幕

浏览数 63995

/**
 * 根据坐标点点击屏幕
 * @param  $x integer 点的x坐标
 * @param  $y integer 点的x坐标
 * @param  $number integer 连续点击的次数,默认为1,允许的最小值也是1
 * @param  $duration integer 连续多次点击的间隔时长,单位为毫秒
 * @return boolean 成功返回true,失败抛出异常信息
 * @throws Exception 错误抛出异常信息
 **/
public function click($x, $y, $number=1, $duration=0){}

我来说说