我正在尝试调试一个js注入的html文件,所以我在js部分设置了一些断点,当我运行它时,它会在第一次运行时调试,但是当我想使用控制台(在Chrome中)时,它会停止调试,断点当然不会受到影响。
正如我所说,当我进入Chrome的控制台时,它会停止调试,并向我显示以下消息:Disconnected (tab was closed or Web Inspector was opened or explicitly detached via Chrome info bar). disconnected意味着停止调试。
我正在尝试用vscode和框架angular.js调试我的web应用程序,我已经下载了用于铬扩展的调试,但是当程序启动时,在调试控制台上显示下面的错误。
SourceMaps.loadSourceMapContents: Could not download sourcemap from https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js.map
我的文件launch.json:
{
"version": "0.2.0",
"configurations
我需要在调试中打开浏览器,而google chrome需要打开的链接是 localhost:8080 在我的luch.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": "
所以我从量角器开始,我想调试我的测试代码:
describe('stuff', function(){
it('should find the specs item, and its empty', function(){
browser.debugger();
gotoHome();
var allItems = element.all('li in model.tags');
var specsDashboardElement;
for (var i=0 ; i < allItems.lengt
我遵循这个指南:。我正在使用Chrome,当我试图打开页面时,它给出了我在这个问题的标题中写的错误。
Chrome调试控制台显示
Uncaught DOMException: Failed to execute 'define'
on 'CustomElementRegistry': this name has already been used with this registry
at http://127.0.0.1:8081/components/@polymer/paper-checkbox/node_modules/
在我的chrome控制台中,我试图理解导致调用某个javascript文件的步骤是什么。事实上,当我在点击输入文件标签后从我的计算机导入一个文件时,一些javascript文件被调用,但我不知道是哪个方法调用了它。我如何在我的调试器(chrome-console)中跟踪它?
编辑:
我正在开发的插件是:。当单击add-file按钮时,文件load-image.min.js is called (在chrome调试器的部分网络中)和我不知道它是如何被调用的