Closed LmeSzinc closed 7 months ago
本地模拟器使用 127.0.0.1:5555, emulator-5554 等作为 serial。调用 u2.connect() 时,_fix_wifi_addr() 会请求 http://emulator-5554/version,但需要等待 requests 超时才会抛出域名解析错误的异常,请求 http://127.0.0.1:5555/version 也需要等到读取超时
127.0.0.1:5555
emulator-5554
_fix_wifi_addr()
http://emulator-5554/version
http://127.0.0.1:5555/version
以 emulator- 开头或者是 127.0.0.1: 开头的都是本地模拟器了,直接绕过可以节省两秒钟
emulator-
127.0.0.1:
https://github.com/openatx/uiautomator2/blob/08d718677237324f3f6c7e4177f42c1398f79a3f/uiautomator2/__init__.py#L1887-L1902
t
本地模拟器使用
127.0.0.1:5555
,emulator-5554
等作为 serial。调用 u2.connect() 时,_fix_wifi_addr()
会请求http://emulator-5554/version
,但需要等待 requests 超时才会抛出域名解析错误的异常,请求http://127.0.0.1:5555/version
也需要等到读取超时以
emulator-
开头或者是127.0.0.1:
开头的都是本地模拟器了,直接绕过可以节省两秒钟https://github.com/openatx/uiautomator2/blob/08d718677237324f3f6c7e4177f42c1398f79a3f/uiautomator2/__init__.py#L1887-L1902