Attach firefox debugger doesn't work
See original GitHub issueI’m trying the “Running Firefox Debugger” debug configuration, unsuccessfully so far (the configuration get stuck at initializing)
My file
<html>
<head>
<script type="application/javascript">
function foo() {
console.log("hey");
}
</script>
</head>
<body>
<button onclick="foo()">Touch me!</button>
</body>
</html>
Then, in CLI firefox --start-debugger-server 9229, in the new firefox window open the HTML file.
From the IDE, create a “Running Firefox Debugger” debug configuration for localhost on port 9229, Launch => attaching debugger is stuck.
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
Firefox does not open when debugging in Visual Studio Code
Start the debugging (choose the configuration and press F5). · Firefox have been opened, but the debugging hasn't still worked. · Open DevTools...
Read more >about:debugging — Firefox Source Docs documentation
The about:debugging page provides a single place from which you can attach the Firefox Developer Tools to a number of debugging targets.
Read more >Debugger for Firefox - Visual Studio Marketplace
Attach. To use attach mode, you have to launch Firefox manually from a terminal with remote debugging enabled. Note that if you don't...
Read more >FireFox debugging doesn't work after updating FireFox to ...
1) Enable remote debugging (You'll only have to do this once) 1.1) Open the DevTools. · 2) Listen for a connection 2.1) Open...
Read more >How to debug Firefox problems - Fedora Project Wiki
Standard troubleshooting steps · Restart Firefox · Verify Firefox installation integrity · Run in safe mode · Test Firefox with a new profile...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I added a note about how to configure firefox on the Launch Configuration tab.
Thanks Andrew. I could attach to Firefox.