嗨,我在 VS Code 中直接运行 Chrome 调试器时遇到问题。我正在研究 Linux Mint。这就是我的 launch.json 文件的样子:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"file": "${workspaceFolder}/index.html"
}
]
}
现在我尝试运行调试器并且错误消息说:无法启动浏览器:“无法找到稳定的 Chrome 版本。可用的自动发现版本是:[“dev”]。您可以在 launch.json 中将“runtimeExecutable”设置为其中之一,或提供浏览器可执行文件的绝对路径。”
根据我的建议,我将 runtimeExecutable 添加到 chrome 可执行文件中,如下所示:
runtimeExecutable:"/opt/google/chrome/google-chrome" 现在错误消息说:
无法附加到浏览器。
我的机器上安装了谷歌浏览器版本:83.0.4103.116-1。
提前感谢您的帮助