docs(python): add missing closing parenthesis (#7089)
This commit is contained in:
parent
5f6d4a7b73
commit
d7c0ddaeb0
|
|
@ -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)");
|
||||
|
|
|
|||
Loading…
Reference in a new issue