'never pause here' can not work
after I continue:
still paused
f8 => for pass to another debugger You should delete the debugger when it's not being used. It should only be used in the lines of code you are currently testing.... There's no reason to have it in your code when you're not testing the code directly before or after the debugger.
It seems counterintuitive, but there are a couple of reasons this is really useful for those debugging sessions. TL;DR Right click in the area where you'd normally set breakpoints, select “never pause here” and you can prevent the debugger from stopping on exceptions or debugger statements.
Just press Ctrl + F8. Alternatively you can click the related button next to the buttons controlling the debugger. This way the execution won't stop.
To totally ignore all breakpoints in Chrome, you must do as follows:
Open your page in the Chrome browser.
Press F12 or right-click on the page and select Inspect.
In the Source panel, press Ctrl+F8 to deactivate all breakpoints. (or: At the top-right corner, select deactivate breakpoints.)
All breakpoints and debugger
statements will be deactivated.
I tested it in Chrome 79.0.3945.88 (64-bit) and I found that the debugger
statement is ignored.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With