From e06f8d36dba583e40c779fd9c1d2bbb708b30fae Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Tue, 2 Sep 2025 16:32:19 +0300 Subject: [PATCH] docs: add `init_script` new argument --- docs/fetching/dynamic.md | 1 + docs/fetching/stealthy.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/fetching/dynamic.md b/docs/fetching/dynamic.md index 5d572ae..e6566c5 100644 --- a/docs/fetching/dynamic.md +++ b/docs/fetching/dynamic.md @@ -79,6 +79,7 @@ Scrapling provides many options with this fetcher. To make it as simple as possi | wait | The time (milliseconds) the fetcher will wait after everything finishes before closing the page and returning the `Response` object. | ✔️ | | page_action | Added for automation. Pass a function that takes the `page` object and does the necessary automation, then returns `page` again. | ✔️ | | wait_selector | Wait for a specific css selector to be in a specific state. | ✔️ | +| init_script | An absolute path to a JavaScript file to be executed on page creation for all pages in this session. | ✔️ | | wait_selector_state | Scrapling will wait for the given state to be fulfilled for the selector given with `wait_selector`. _Default state is `attached`._ | ✔️ | | google_search | Enabled by default, Scrapling will set the referer header as if this request came from a Google search of this website's domain name. | ✔️ | | extra_headers | A dictionary of extra headers to add to the request. _The referer set by the `google_search` argument takes priority over the referer set here if used together._ | ✔️ | diff --git a/docs/fetching/stealthy.md b/docs/fetching/stealthy.md index 489fd4f..667f43e 100644 --- a/docs/fetching/stealthy.md +++ b/docs/fetching/stealthy.md @@ -43,6 +43,7 @@ Before jumping to [examples](#examples), here's the full list of arguments | timeout | The timeout used in all operations and waits through the page. It's in milliseconds, and the default is 30000. | ✔️ | | wait | The time (milliseconds) the fetcher will wait after everything finishes before closing the page and returning the `Response` object. | ✔️ | | wait_selector | Wait for a specific css selector to be in a specific state. | ✔️ | +| init_script | An absolute path to a JavaScript file to be executed on page creation for all pages in this session. | ✔️ | | wait_selector_state | Scrapling will wait for the given state to be fulfilled for the selector given with `wait_selector`. _Default state is `attached`._ | ✔️ | | proxy | The proxy to be used with requests. It can be a string or a dictionary with the keys 'server', 'username', and 'password' only. | ✔️ | | additional_args | Additional arguments to be passed to Camoufox as additional settings, and they take higher priority than Scrapling's settings. | ✔️ |