在没有Javascript调试的情况下,在Visual Studio中启动新的Chrome实例可以通过以下步骤实现:
"NewChromeInstance": {
"commandName": "Executable",
"executablePath": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
"commandLineArgs": "--remote-debugging-port=9222 http://localhost:5000",
"workingDirectory": "$(ProjectDir)"
}
在上述配置中,"executablePath"指定了Chrome浏览器的安装路径,"commandLineArgs"指定了Chrome启动时的命令行参数,其中"--remote-debugging-port=9222"表示开启远程调试端口,"http://localhost:5000"表示要启动的网站地址。
需要注意的是,上述方法仅适用于Windows操作系统,并假设Chrome浏览器的安装路径为默认路径。如果Chrome浏览器的安装路径不同,需要相应地修改"executablePath"的值。
此外,如果需要在Visual Studio中进行Javascript调试,可以在Chrome浏览器中安装"Debugger for Chrome"扩展,并在launchSettings.json文件中添加相应的调试配置。具体的配置方法可以参考相关文档或教程。
推荐的腾讯云相关产品:腾讯云云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
领取专属 10元无门槛券
手把手带您无忧上云