docs(python): add missing closing parenthesis (#7089)

This commit is contained in:
Lisa 2021-06-14 04:43:08 -04:00 committed by GitHub
parent 5f6d4a7b73
commit d7c0ddaeb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)");