From d7c0ddaeb0ade7da7cff2b647789ca2c5605ecd4 Mon Sep 17 00:00:00 2001 From: Lisa <34400837+lyzlisa@users.noreply.github.com> Date: Mon, 14 Jun 2021 04:43:08 -0400 Subject: [PATCH] docs(python): add missing closing parenthesis (#7089) --- docs/src/selectors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/selectors.md b/docs/src/selectors.md index bfa8f6cc5b..a5da2f721b 100644 --- a/docs/src/selectors.md +++ b/docs/src/selectors.md @@ -153,10 +153,10 @@ methods accept [`param: selector`] as their first argument. page.click(":nth-match(:text('Buy'), 3)"); ``` ```python async - await page.click(":nth-match(:text('Buy'), 3)" + await page.click(":nth-match(:text('Buy'), 3)") ``` ```python sync - page.click(":nth-match(:text('Buy'), 3)" + page.click(":nth-match(:text('Buy'), 3)") ``` ```csharp await page.ClickAsync(":nth-match(:text('Buy'), 3)");