雷系泡泡
雷系泡泡
- 可能和 输入法 有关 > 如果使用第三方的输入法,有可能出现无法输入的情况 - 也可能和 输入框控件 有关 > 有些 输入框控件 可能是被改动过,含有多层可选择输入 --- 如果没有上面提到的可能,或许可以试一下 `PressKeyCode` ? ```golang driver.PressKeyCode(KCExplorer, KMEmpty) ```
🤔是新版全部 `编辑框` 都不可以? 还是只是部分特定的 `编辑框`?
找不到元素? 有什么报错吗?
这个报错提示看上去是正常执行了 `寻找元素` 的操作 > 报错信息由 uia2 提供的 --- ``` panic: runtime error: index out of range [2] with length 0 ``` 这个 `panic` 看上去是我没正确处理 可以提供导致报错的相关代码吗?或更详细的 `panic堆栈信息`
没有例子。。我就一个 `Android` 设备 > 还是以前的小伙伴提供的。。。 > 简单的就直接把多个设备的 `driver` 统一遍历执行就好了
Have you installed and run [appium/WebDriverAgent](https://github.com/appium/WebDriverAgent) on your device?
Use the premise of this project is the need to **ensure** that `iOS device` have been used `xctest` started [appium/WebDriverAgent](https://github.com/appium/WebDriverAgent) This project is to communicate **directly** with [appium/WebDriverAgent](https://github.com/appium/WebDriverAgent), unlike the...
> https://iphonedevwiki.net/index.php/SSH_Over_USB ## SSH over USB using usbmuxd You can either download a binary and run that or use a python script. The python script is a lot slower than...
确保 `iTunes` 已安装 > On Windows, ensure `iTunes` is installed
根据 `Airtest` 的代码来看, 请求给 `WDA` 的响应都会判断 `status` 是否为 `0` ```python def httpdo(url, method='GET', data=None): """ Do HTTP Request """ start = time.time() if isinstance(data, dict): data = json.dumps(data) if DEBUG:...