From 80af4d7c4adcc53fc99e4ad61505070734b2e96e Mon Sep 17 00:00:00 2001 From: Kushagra Agrawal <57141343+kushagraag@users.noreply.github.com> Date: Fri, 14 Jul 2023 15:07:17 +0530 Subject: [PATCH] docs: added comments to the readme (#10552) Co-authored-by: Alex Rudenko --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2767e223b9c..f463586396e 100644 --- a/README.md +++ b/README.md @@ -143,9 +143,11 @@ The following example searches [developer.chrome.com](https://developer.chrome.c import puppeteer from 'puppeteer'; (async () => { + // Launch the browser and open a new blank page const browser = await puppeteer.launch(); const page = await browser.newPage(); + // Navigate the page to a URL await page.goto('https://developer.chrome.com/'); // Set screen size