You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/fetching/dynamic.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,7 @@ Scrapling provides many options with this fetcher and its session classes. To ma
93
93
| stealth | Enables stealth mode; you should always check the documentation to see what the stealth mode does currently. | ✔️ |
94
94
| real_chrome | If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch and use an instance of your browser. | ✔️ |
95
95
| locale | Set the locale for the browser if wanted. The default value is `en-US`. | ✔️ |
96
+
| timezone_id | Set the timezone for the browser if wanted. | ✔️ |
96
97
| cdp_url | Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP. | ✔️ |
97
98
| user_data_dir | Path to a User Data Directory, which stores browser session data like cookies and local storage. The default is to create a temporary directory. **Only Works with sessions**| ✔️ |
98
99
| extra_flags | A list of additional browser flags to pass to the browser on launch. | ✔️ |
# Static version instead of a dynamic version so we can get better layer caching while building docker, check the docker file to understand
8
-
version = "0.3.11"
8
+
version = "0.3.12"
9
9
description = "Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!"
:param wait_selector: Wait for a specific CSS selector to be in a specific state.
78
78
:param init_script: An absolute path to a JavaScript file to be executed on page creation for all pages in this session.
79
79
:param locale: Set the locale for the browser if wanted. The default value is `en-US`.
80
+
:param timezone_id: Set the timezone for the browser if wanted.
80
81
:param wait_selector_state: The state to wait for the selector given with `wait_selector`. The default state is `attached`.
81
82
:param stealth: Enables stealth mode, check the documentation to see what stealth mode does currently.
82
83
:param real_chrome: If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch an instance of your browser and use it.
:param wait_selector: Wait for a specific CSS selector to be in a specific state.
210
214
:param init_script: An absolute path to a JavaScript file to be executed on page creation for all pages in this session.
211
215
:param locale: Set the locale for the browser if wanted. The default value is `en-US`.
216
+
:param timezone_id: Set the timezone for the browser if wanted.
212
217
:param wait_selector_state: The state to wait for the selector given with `wait_selector`. The default state is `attached`.
213
218
:param stealth: Enables stealth mode, check the documentation to see what stealth mode does currently.
214
219
:param real_chrome: If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch an instance of your browser and use it.
0 commit comments