docs(selector): change Python textContent to text_content (#9440)

Co-authored-by: Tadas Gedgaudas <tadas.gedgaudas@oxylabs.io>
This commit is contained in:
knaitas 2021-10-12 11:16:29 +03:00 committed by GitHub
parent 9dfc0a3394
commit cfe75fc755
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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