Questions tagged [chrome-debugging]

100 questions
0
votes
1 answer

how to decipher time visited to URL from the dump of chrome://sync-internal call

example data snippet: sZ:ADqtAZxSnZ6xU8hUKrEAL+OKQ9w4yLte28bSEP9+SCrrLOmiTiBj2Swrozz7K5ddA8uGGY0s/x+eMI7TR2SsjBa+kbzIlvH7gg==,,,,,,,,,,,Typed URLs,,{"typed_url":{"hidden":false,"title":"ABC…
0
votes
2 answers

I can't run Chrome Debugger in VS Code on Linux Mint

Hi I've got a problem to run Chrome Debugger directly in VS Code. I'm working on Linux Mint. This is how my launch.json file looks like: { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing…
0
votes
1 answer

pypi cproto (chrome debugging client) hangs on exit

Using https://pypi.org/project/cproto/, attached to Chrome running headless in a Docker container, I find that it gets stuck from time to time (the example quoted below is not reliable -- you may need to run it a few times): $ python3 Python 3.6.8…
0
votes
1 answer

Is it possible to pause the chrome debugger on every console.log statement executed by the JavaScript code?

I would like to pause the Chrome debugger whenever a console.log statement occurs. Is this possible and if so how would it be achieved? I know I can break on subtree modification etc. Something like that where the event I was pausing on was one…
0
votes
0 answers

Chrome Queueing Requests

Chrome Timing View The image above show chrome spends most of the time queuing up the request. I am trying to figure out why that is happening to minimize it. According to chrome developer documents: A request being queued indicates that: The…
0
votes
1 answer

Create react app and debug in VS Code in wsl ubuntu

I'm trying to debug my CRA app running in WSL with VS Code and running into a very strange result. If I set a breakpoint in VS Code - it doesn't work at all. If I go to developer tools in chrome -> source ->…
0
votes
1 answer

WebStorm, setting JavaScript Debug with another task running before

In WebStorm I can very easy setup JavaScript Debug and then when I run this configuration, IDE opens the Chrome browser and all breakpoints are active. The problem begins when I need to run specific tasks prior to starting debugging, for example…
Anatoly
  • 5,056
  • 9
  • 62
  • 136
0
votes
0 answers

Open a webpage in existing browser session opened by Selenium-webdriver in chrome debugging mode

this works if I run the below command manually: google-chrome --remote-debugging-port=9222 --user-data-dir=\"/usr/local/xxx\"' then I have to open a tab within an existing session manually as well. And than run the Selenium script to get data from…
greenszpila
  • 193
  • 1
  • 1
  • 14
0
votes
0 answers

Chrome-debugger requires authorization after launching

I used create-react-app to create new react application. I have not changed absolutely anything except for adding configuration "Chrome-launch" into launch.json. After debug launching it always requires some authorization. According to…
user8620575
  • 165
  • 2
  • 9
0
votes
0 answers

ghost line does nothing even when viewing through the Node debugger?

I have the weirdest bug I have ever seen. I recently upgraded my config package and my Google strategy started failing. I used the debugger to troubleshoot this error: In the debugger I got to the line were the internal authorizationURL is…
user11686545
0
votes
0 answers

How can I catch Node.js startup errors using the Chrome-Node-Debugger?

I have an error that occurs at startup when I create a new Google strategy. This errror was introduced when I upgraded my config package. I want to catch the error in the debugger, but the debugger will not connect unless Node starts up with out…
user11686545
0
votes
1 answer

When are watch variables available in the Chrome-Node-Debugger?

I have a test file that runs every minute or second or so depending upon how I set it. I set watches on variables in the file but they never populate: However, I can get them to populate by setting a break point in the file itself. Only with a…
user11686545
0
votes
2 answers

How to get output of JS on console in developers tools in VScode

I am learning javascript in vscode and using liveServer extension to get my html and js runnning on chrome...and i see my js output in "inspect element->console" which works perfectly fine...now i have seen chrome developers tools integrated in…
0
votes
0 answers

In the Sources panel, Chrome Dev Tools says variable is undefined, but in the console panel, it has a value

When I open Chrome Dev Tools and I set a breakpoint in the sources panel, upon pausing at the breakpoint, Chrome tells me that the variable in question is undefined. But when I type that variable into the console, (while still paused on the…
CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
0
votes
1 answer

"w()", "n()" in Javascript source code in browser

Sorry for such silly question, but I am new to javascript and frontend development and struggling with understanding how the javascript code executes in browser. In my developer environment, I have javascript function like…
WomenWhoCode
  • 396
  • 1
  • 6
  • 18