From 8c9308d3dc9d1e641f3b35b2a23e4cd719a1da91 Mon Sep 17 00:00:00 2001 From: jrandolf <101637635+jrandolf@users.noreply.github.com> Date: Fri, 28 Oct 2022 11:04:05 +0200 Subject: [PATCH] docs: remove unsupported debugging method (#9182) `ndb` is no longer maintained. --- docs/guides/debugging.md | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/docs/guides/debugging.md b/docs/guides/debugging.md index d66e04d520b..50548d6bf64 100644 --- a/docs/guides/debugging.md +++ b/docs/guides/debugging.md @@ -119,29 +119,6 @@ if you want to try something out, you have to add it to your test file. 6. Now your `debugger` statement will be hit and you can debug in the test browser. -### Use [ndb](https://github.com/GoogleChromeLabs/ndb) - -1. Install `ndb`: - - ```sh - npm install -g ndb - ``` - -2. Add `debugger` to any server code you want debugged. For example, - - ```ts - debugger; - await page.click('a[target=_blank]'); - ``` - -3. Add `ndb` before your test command. For example, - - ```sh - ndb node path/to/script.js - ``` - -4. Debug your test inside chromium like a boss! - ### Log DevTools protocol traffic If all else fails, it's possible there may be an issue between Puppeteer and the