CDPotion.Domain.Network (cdpotion v0.1.0)
Summary
Functions
Tells whether clearing browser cache is supported.
Tells whether clearing browser cookies is supported.
Tells whether emulation of network conditions is supported.
Clears accepted encodings set by setAcceptedEncodings
Clears browser cache.
Clears browser cookies.
Response to Network.requestIntercepted which either modifies the request to continue with any modifications, or blocks it, or completes it with the provided response bytes. If a network fetch occurs as a result which encounters a redirect an additional Network.requestIntercepted event will be sent with the same InterceptionId. Deprecated, use Fetch.continueRequest, Fetch.fulfillRequest and Fetch.failRequest instead.
Deletes browser cookies with matching name and url or domain/path pair.
Disables network tracking, prevents network events from being sent to the client.
Activates emulation of network conditions.
Enables network tracking, network events will now be delivered to the client.
Enables tracking for the Reporting API, events generated by the Reporting API will now be delivered to the client. Enabling triggers 'reportingApiReportAdded' for all existing reports.
Returns all browser cookies. Depending on the backend support, will return detailed cookie
information in the cookies
field.
Deprecated. Use Storage.getCookies instead.
Returns the DER-encoded certificate.
Returns all browser cookies for the current URL. Depending on the backend support, will return
detailed cookie information in the cookies
field.
Returns post data sent with the request. Returns an error when no data was sent with the request.
Returns content served for the given request.
Returns content served for the given currently intercepted request.
Returns information about the COEP/COOP isolation status.
Fetches the resource and returns the content.
This method sends a new XMLHttpRequest which is identical to the original one. The following parameters should be identical: method, url, async, request body, extra headers, withCredentials attribute, user, password.
Searches for given string in response content.
Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
Specifies whether to attach a page script stack id in requests
Blocks URLs from loading.
Toggles ignoring of service worker for each request.
Toggles ignoring cache for each request. If true
, cache will not be used.
Sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.
Sets given cookies.
Specifies whether to always send extra HTTP headers with the requests from this page.
Sets the requests to intercept that match the provided patterns and optionally resource types. Deprecated, please use Fetch.enable instead.
Allows overriding user agent with the given string.
Returns a handle to the stream representing the response body. Note that after this command, the intercepted request can't be continued as is -- you either need to cancel it or to provide the response body. The stream only supports sequential read, IO.read will fail if the position is specified.
Functions
can_clear_browser_cache()
Tells whether clearing browser cache is supported.
can_clear_browser_cookies()
Tells whether clearing browser cookies is supported.
can_emulate_network_conditions()
Tells whether emulation of network conditions is supported.
clear_accepted_encodings_override()
Clears accepted encodings set by setAcceptedEncodings
clear_browser_cache()
Clears browser cache.
clear_browser_cookies()
Clears browser cookies.
continue_intercepted_request(interception_id, error_reason \\ nil, raw_response \\ nil, url \\ nil, method \\ nil, post_data \\ nil, headers \\ nil, auth_challenge_response \\ nil)
Response to Network.requestIntercepted which either modifies the request to continue with any modifications, or blocks it, or completes it with the provided response bytes. If a network fetch occurs as a result which encounters a redirect an additional Network.requestIntercepted event will be sent with the same InterceptionId. Deprecated, use Fetch.continueRequest, Fetch.fulfillRequest and Fetch.failRequest instead.
Parameters:
interceptionId:InterceptionId
: description not provided :(errorReason:ErrorReason
: (Optional) If set this causes the request to fail with the given reason. PassingAborted
for requests marked withisNavigationRequest
also cancels the navigation. Must not be set in response to an authChallenge.rawResponse:string
: (Optional) If set the requests completes using with the provided base64 encoded raw response, including HTTP status line and headers etc... Must not be set in response to an authChallenge. (Encoded as a base64 string when passed over JSON)url:string
: (Optional) If set the request url will be modified in a way that's not observable by page. Must not be set in response to an authChallenge.method:string
: (Optional) If set this allows the request method to be overridden. Must not be set in response to an authChallenge.postData:string
: (Optional) If set this allows postData to be set. Must not be set in response to an authChallenge.headers:Headers
: (Optional) If set this allows the request headers to be changed. Must not be set in response to an authChallenge.authChallengeResponse:AuthChallengeResponse
: (Optional) Response to a requestIntercepted with an authChallenge. Must not be set otherwise.
delete_cookies(name, url \\ nil, domain \\ nil, path \\ nil)
Deletes browser cookies with matching name and url or domain/path pair.
Parameters:
name:string
: Name of the cookies to remove.url:string
: (Optional) If specified, deletes all the cookies with the given name where domain and path match provided URL.domain:string
: (Optional) If specified, deletes only cookies with the exact domain.path:string
: (Optional) If specified, deletes only cookies with the exact path.
disable()
Disables network tracking, prevents network events from being sent to the client.
emulate_network_conditions(offline, latency, download_throughput, upload_throughput, connection_type \\ nil)
Activates emulation of network conditions.
Parameters:
offline:boolean
: True to emulate internet disconnection.latency:number
: Minimum latency from request sent to response headers received (ms).downloadThroughput:number
: Maximal aggregated download throughput (bytes/sec). -1 disables download throttling.uploadThroughput:number
: Maximal aggregated upload throughput (bytes/sec). -1 disables upload throttling.connectionType:ConnectionType
: (Optional) Connection type if known.
enable(max_total_buffer_size \\ nil, max_resource_buffer_size \\ nil, max_post_data_size \\ nil)
Enables network tracking, network events will now be delivered to the client.
Parameters:
maxTotalBufferSize:integer
: (Optional) Buffer size in bytes to use when preserving network payloads (XHRs, etc).maxResourceBufferSize:integer
: (Optional) Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).maxPostDataSize:integer
: (Optional) Longest post body size (in bytes) that would be included in requestWillBeSent notification
enable_reporting_api(enable)
Enables tracking for the Reporting API, events generated by the Reporting API will now be delivered to the client. Enabling triggers 'reportingApiReportAdded' for all existing reports.
Parameters:
enable:boolean
: Whether to enable or disable events for the Reporting API
get_all_cookies()
Returns all browser cookies. Depending on the backend support, will return detailed cookie
information in the cookies
field.
Deprecated. Use Storage.getCookies instead.
get_certificate(origin)
Returns the DER-encoded certificate.
Parameters:
origin:string
: Origin to get certificate for.
get_cookies(urls \\ nil)
Returns all browser cookies for the current URL. Depending on the backend support, will return
detailed cookie information in the cookies
field.
Parameters:
urls:array
: (Optional) The list of URLs for which applicable cookies will be fetched. If not specified, it's assumed to be set to the list containing the URLs of the page and all of its subframes.
get_request_post_data(request_id)
Returns post data sent with the request. Returns an error when no data was sent with the request.
Parameters:
requestId:RequestId
: Identifier of the network request to get content for.
get_response_body(request_id)
Returns content served for the given request.
Parameters:
requestId:RequestId
: Identifier of the network request to get content for.
get_response_body_for_interception(interception_id)
Returns content served for the given currently intercepted request.
Parameters:
interceptionId:InterceptionId
: Identifier for the intercepted request to get body for.
get_security_isolation_status(frame_id \\ nil)
Returns information about the COEP/COOP isolation status.
Parameters:
frameId:Page.FrameId
: (Optional) If no frameId is provided, the status of the target is provided.
load_network_resource(frame_id \\ nil, url, options)
Fetches the resource and returns the content.
Parameters:
frameId:Page.FrameId
: (Optional) Frame id to get the resource for. Mandatory for frame targets, and should be omitted for worker targets.url:string
: URL of the resource to get content for.options:LoadNetworkResourceOptions
: Options for the request.
replay_xhr(request_id)
This method sends a new XMLHttpRequest which is identical to the original one. The following parameters should be identical: method, url, async, request body, extra headers, withCredentials attribute, user, password.
Parameters:
requestId:RequestId
: Identifier of XHR to replay.
search_in_response_body(request_id, query, case_sensitive \\ nil, is_regex \\ nil)
Searches for given string in response content.
Parameters:
requestId:RequestId
: Identifier of the network response to search.query:string
: String to search for.caseSensitive:boolean
: (Optional) If true, search is case sensitive.isRegex:boolean
: (Optional) If true, treats string parameter as regex.
set_accepted_encodings(encodings)
Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
Parameters:
encodings:array
: List of accepted content encodings.
set_attach_debug_stack(enabled)
Specifies whether to attach a page script stack id in requests
Parameters:
enabled:boolean
: Whether to attach a page script stack for debugging purpose.
set_blocked_ur_ls(urls)
Blocks URLs from loading.
Parameters:
urls:array
: URL patterns to block. Wildcards ('*') are allowed.
set_bypass_service_worker(bypass)
Toggles ignoring of service worker for each request.
Parameters:
bypass:boolean
: Bypass service worker and load from network.
set_cache_disabled(cache_disabled)
Toggles ignoring cache for each request. If true
, cache will not be used.
Parameters:
cacheDisabled:boolean
: Cache disabled state.
set_cookie(name, value, url \\ nil, domain \\ nil, path \\ nil, secure \\ nil, http_only \\ nil, same_site \\ nil, expires \\ nil, priority \\ nil, same_party \\ nil, source_scheme \\ nil, source_port \\ nil, partition_key \\ nil)
Sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.
Parameters:
name:string
: Cookie name.value:string
: Cookie value.url:string
: (Optional) The request-URI to associate with the setting of the cookie. This value can affect the default domain, path, source port, and source scheme values of the created cookie.domain:string
: (Optional) Cookie domain.path:string
: (Optional) Cookie path.secure:boolean
: (Optional) True if cookie is secure.httpOnly:boolean
: (Optional) True if cookie is http-only.sameSite:CookieSameSite
: (Optional) Cookie SameSite type.expires:TimeSinceEpoch
: (Optional) Cookie expiration date, session cookie if not setpriority:CookiePriority
: (Optional) Cookie Priority type.sameParty:boolean
: (Optional) True if cookie is SameParty.sourceScheme:CookieSourceScheme
: (Optional) Cookie source scheme type.sourcePort:integer
: (Optional) Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port. An unspecified port value allows protocol clients to emulate legacy cookie scope for the port. This is a temporary ability and it will be removed in the future.partitionKey:string
: (Optional) Cookie partition key. The site of the top-level URL the browser was visiting at the start of the request to the endpoint that set the cookie. If not set, the cookie will be set as not partitioned.
set_cookies(cookies)
Sets given cookies.
Parameters:
cookies:array
: Cookies to be set.
set_extra_http_headers(headers)
Specifies whether to always send extra HTTP headers with the requests from this page.
Parameters:
headers:Headers
: Map with extra HTTP headers.
set_request_interception(patterns)
Sets the requests to intercept that match the provided patterns and optionally resource types. Deprecated, please use Fetch.enable instead.
Parameters:
patterns:array
: Requests matching any of these patterns will be forwarded and wait for the corresponding continueInterceptedRequest call.
set_user_agent_override(user_agent, accept_language \\ nil, platform \\ nil, user_agent_metadata \\ nil)
Allows overriding user agent with the given string.
Parameters:
userAgent:string
: User agent to use.acceptLanguage:string
: (Optional) Browser langugage to emulate.platform:string
: (Optional) The platform navigator.platform should return.userAgentMetadata:Emulation.UserAgentMetadata
: (Optional) To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData
take_response_body_for_interception_as_stream(interception_id)
Returns a handle to the stream representing the response body. Note that after this command, the intercepted request can't be continued as is -- you either need to cancel it or to provide the response body. The stream only supports sequential read, IO.read will fail if the position is specified.
Parameters:
interceptionId:InterceptionId
: description not provided :(