From 9a43d946b0547ad939c8a662e53f052f9e20bcf9 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 4 May 2022 16:10:35 -0600 Subject: [PATCH] chore: fix indentation in readme snippet (#13947) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf3b83cc2f..d5e59886c4 100644 --- a/README.md +++ b/README.md @@ -97,8 +97,8 @@ This code snippet navigates to whatsmyuseragent.org and saves a screenshot. import { test } from '@playwright/test'; test('Page Screenshot', async ({ page }) => { - await page.goto('http://whatsmyuseragent.org/'); - await page.screenshot({ path: `example.png` }); + await page.goto('http://whatsmyuseragent.org/'); + await page.screenshot({ path: `example.png` }); }); ```