Questions tagged [chrome-debugging]

100 questions
0
votes
1 answer

Debug/Inpect Ionic Apk With Google DevTools

I am trying to inspect and debug a apk file with google dev tools.I don't have application codes and application written with ionic, but I have an apk file. I followed the steps in this…
0
votes
2 answers

Handle the debugger detaching in chrome extension

In accordance with the Debugger DevTools API, there is no debugger detach event. Can I catch the event for detaching the debugger when the user clicking "cancel" e.g.? Sample code for attach: chrome.debugger.attach( { tabId: tabId …
0
votes
1 answer

Any ideas how to trigger the breakpoint inside a callback to Array.prototype.every?

I had followed this guide and installed chrome debugger (non related to the guide) on VS Code - I've modified index.tsx to contain this code: function f(s:string) :boolean { return s != undefined; } function f1() { const v : string =…
AnArrayOfFunctions
  • 3,452
  • 2
  • 29
  • 66
0
votes
1 answer

Find function that made HTTP request in chrome

I can see my HTTP requests in the Network tab. Does Chrome debugger have a way for me to find where in the source code that request was initiated?
Marcelo Lazaroni
  • 9,819
  • 3
  • 35
  • 41
0
votes
1 answer

How do you get the Visual Studio Code debugger to find AngularDart package files?

I'm working on AngularDart in Visual Studio code and I'm having trouble setting up breakpoints and debugging inside my package. It looks like the source maps are all relative, so the chrome debugger looks in the ${webroot}/packages/etc which…
Jeff
  • 5,746
  • 4
  • 33
  • 40
0
votes
1 answer

Prevent automatic "step into" inside .min.js files in visual studio, while debugging

Is there any option like debug Just my Code on the line of C#, to prevent step into Javascript minified libraries?
Abhijeet
  • 13,562
  • 26
  • 94
  • 175
-1
votes
1 answer

How to show object instance in Memory snapshot?

I am following this example to learn more about Memory Snapshots. The example mentions, that hoovering over an allocated object should show the object instance, e.g. This would be super convenient, but it does not work for me. Am I missing…
TmTron
  • 17,012
  • 10
  • 94
  • 142
-1
votes
1 answer

Getting overview of asp.net c# api calls

im currently debugging a larger asp.net mvc solution. Now I'm pretty sure that a API call that is made serverside in c# is returning some kind of faulty value. The problem is though, the project has a LOT of api calls that looks like each…
-1
votes
1 answer

After Starting to Debug VS2017 ASP.NET Do not get this message

After I F5 to debug in my ASP.NET 2.1/Angular 6.1 I do get the localhost server I request. I do not get "Enable Chrome For Debugging with VS2017". I am using VS2017 15.7.4 It be great to debug with Chrome and VS2017. Here are some of my…
James
  • 45
  • 2
  • 9
-2
votes
2 answers

Javascript filter was unfair

I'm trying to get existCount from an array, which has id in selected array. But something went wrong, I had an item with id = 5493 but existCount.length 0 My JS code: var existCount = $scope.selectedScript.filter(function (item) { return item.id…
Anh Tuan
  • 41
  • 4
1 2 3 4 5 6
7