diff --git a/scrapling/engines/pw.py b/scrapling/engines/pw.py index 5a71112..4f453fe 100644 --- a/scrapling/engines/pw.py +++ b/scrapling/engines/pw.py @@ -50,7 +50,7 @@ class PlaywrightEngine: :param stealth: Enables stealth mode, check the documentation to see what stealth mode does currently. :param hide_canvas: Add random noise to canvas operations to prevent fingerprinting. :param disable_webgl: Disables WebGL and WebGL 2.0 support entirely. - :param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP. + :param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers/NSTBrowser through CDP. :param nstbrowser_mode: Enables NSTBrowser mode, it have to be used with `cdp_url` argument or it will get completely ignored. :param google_search: Enabled by default, Scrapling will set the referer header to be as if this request came from a Google search for this website's domain name. :param extra_headers: A dictionary of extra headers to add to headers on the request. The referer set by the `google_search` argument takes priority over the referer set here if used together. diff --git a/scrapling/fetchers.py b/scrapling/fetchers.py index 4af3328..a8e9a1d 100644 --- a/scrapling/fetchers.py +++ b/scrapling/fetchers.py @@ -157,7 +157,7 @@ class PlayWrightFetcher(BaseFetcher): :param disable_webgl: Disables WebGL and WebGL 2.0 support entirely. :param google_search: Enabled by default, Scrapling will set the referer header to be as if this request came from a Google search for this website's domain name. :param extra_headers: A dictionary of extra headers to add to headers on the request. The referer set by the `google_search` argument overwrites the referer set here if used together. - :param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP. + :param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers/NSTBrowser through CDP. :param nstbrowser_mode: Enables NSTBrowser mode, it have to be used with `cdp_url` argument or it will get completely ignored. :param nstbrowser_config: The config you want to send with requests to the NSTBrowser. If left empty, Scrapling defaults to an optimized NSTBrowser's docker browserless config. :return: A Response object with `url`, `text`, `content`, `status`, `reason`, `encoding`, `cookies`, `headers`, `request_headers`, and the `adaptor` class for parsing, of course.