mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
docs(locators): typo lsocator -> locator (#16704)
This commit is contained in:
parent
664d4a271e
commit
16ab54db44
@ -341,7 +341,7 @@ rowLocator
|
||||
.screenshot();
|
||||
```
|
||||
```python async
|
||||
row_locator = page.lsocator("tr")
|
||||
row_locator = page.locator("tr")
|
||||
# ...
|
||||
await row_locator
|
||||
.filter(has_text="text in column 1")
|
||||
@ -349,7 +349,7 @@ await row_locator
|
||||
.screenshot()
|
||||
```
|
||||
```python sync
|
||||
row_locator = page.lsocator("tr")
|
||||
row_locator = page.locator("tr")
|
||||
# ...
|
||||
row_locator
|
||||
.filter(has_text="text in column 1")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user