提问人:Technik_Max 提问时间:6/28/2021 更新时间:6/29/2021 访问量:401
chrome-remote-interface 套接字挂断
chrome-remote-interface socket hang up
问:
我尝试在 android 上远程调试 WebView。
我已经使用此命令
访问了进程 ID 然后我用这个命令
做了一个端口转发当我在浏览器中访问时,我得到了一个指向 -> 的链接,它正在工作adb shell grep -a webview_devtools_remote /proc/net/unixc
forward tcp:9483 localabstract:webview_devtools_remote_<The ID>
http://localhost:9483
chrome://inspect
但是当我尝试连接软件包时,我收到错误chrome-remote-interface
stocket hang up
这是我穿的代码
const CDP = require('chrome-remote-interface');
async function run() {
let client;
try {
client = await CDP({port:9483});
const {Network, Page} = client;
console.log("working")
} catch (err) {
console.error(err);
} finally {
if (client) {
await client.close();
}
}
}
await run()
答:
0赞
Technik_Max
6/29/2021
#1
设置此选项可解决问题local: true
评论