mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
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)");
|
page.click(":nth-match(:text('Buy'), 3)");
|
||||||
```
|
```
|
||||||
```python async
|
```python async
|
||||||
await page.click(":nth-match(:text('Buy'), 3)"
|
await page.click(":nth-match(:text('Buy'), 3)")
|
||||||
```
|
```
|
||||||
```python sync
|
```python sync
|
||||||
page.click(":nth-match(:text('Buy'), 3)"
|
page.click(":nth-match(:text('Buy'), 3)")
|
||||||
```
|
```
|
||||||
```csharp
|
```csharp
|
||||||
await page.ClickAsync(":nth-match(:text('Buy'), 3)");
|
await page.ClickAsync(":nth-match(:text('Buy'), 3)");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user