docs(selector): change Python textContent to text_content (#9440)
Co-authored-by: Tadas Gedgaudas <tadas.gedgaudas@oxylabs.io>
This commit is contained in:
parent
9dfc0a3394
commit
cfe75fc755
|
|
@ -490,11 +490,11 @@ page.textContent("article:has(div.promo)");
|
|||
```
|
||||
|
||||
```python async
|
||||
await page.textContent("article:has(div.promo)")
|
||||
await page.text_content("article:has(div.promo)")
|
||||
```
|
||||
|
||||
```python sync
|
||||
page.textContent("article:has(div.promo)")
|
||||
page.text_content("article:has(div.promo)")
|
||||
```
|
||||
|
||||
```csharp
|
||||
|
|
|
|||
Loading…
Reference in New Issue