From 37d5773dad9ed38b7749ac8ba9f8c2fd177f515f Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Sat, 18 Aug 2018 10:22:05 -0700 Subject: [PATCH] Fix typo and duplicate content in Puppeteer JSDoc Example #2 --- lib/helper/Puppeteer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/helper/Puppeteer.js b/lib/helper/Puppeteer.js index d8000108a..edfb3732a 100644 --- a/lib/helper/Puppeteer.js +++ b/lib/helper/Puppeteer.js @@ -78,7 +78,7 @@ const consoleLogStore = new Console(); * } * ``` * - * #### Example #2: Wait for DOMContentLoaded event and 0 netowrk connections + * #### Example #2: Wait for DOMContentLoaded event and 0 network connections * * ```json * { @@ -86,7 +86,7 @@ const consoleLogStore = new Console(); * "Puppeteer" : { * "url": "http://localhost", * "restart": false, - * "waitForNavigation": "networkidle0", + * "waitForNavigation": [ "domcontentloaded", "networkidle0" ], * "waitForAction": 500 * } * }