docs: update the StealthyFetcher page

This commit is contained in:
Karim shoair
2025-12-31 00:22:33 +02:00
parent f6f0ed4b37
commit d4ae6c49c0
2 changed files with 161 additions and 145 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ page = DynamicFetcher.fetch('https://example.com', network_idle=True)
# Custom timeout (in milliseconds)
page = DynamicFetcher.fetch('https://example.com', timeout=30000) # 30 seconds
# Proxy support (It can also be a dictionary with the keys 'server', 'username', and 'password' only)
# Proxy support (It can also be a dictionary with only the keys 'server', 'username', and 'password'.)
page = DynamicFetcher.fetch('https://example.com', proxy='http://username:password@host:port')
```