network

package
v0.0.0-...-5fc0351 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 5, 2019 License: MIT Imports: 12 Imported by: 0

Documentation

Overview

Package network provides the Chrome DevTools Protocol commands, types, and events for the Network domain.

Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and responses, their headers, bodies, timing, etc.

Generated by the cdproto-gen command.

Index

Constants

View Source
const (
	CommandClearBrowserCache                       = "Network.clearBrowserCache"
	CommandClearBrowserCookies                     = "Network.clearBrowserCookies"
	CommandDeleteCookies                           = "Network.deleteCookies"
	CommandDisable                                 = "Network.disable"
	CommandEmulateNetworkConditions                = "Network.emulateNetworkConditions"
	CommandEnable                                  = "Network.enable"
	CommandGetAllCookies                           = "Network.getAllCookies"
	CommandGetCertificate                          = "Network.getCertificate"
	CommandGetCookies                              = "Network.getCookies"
	CommandGetResponseBody                         = "Network.getResponseBody"
	CommandGetRequestPostData                      = "Network.getRequestPostData"
	CommandGetResponseBodyForInterception          = "Network.getResponseBodyForInterception"
	CommandTakeResponseBodyForInterceptionAsStream = "Network.takeResponseBodyForInterceptionAsStream"
	CommandReplayXHR                               = "Network.replayXHR"
	CommandSearchInResponseBody                    = "Network.searchInResponseBody"
	CommandSetBlockedURLS                          = "Network.setBlockedURLs"
	CommandSetBypassServiceWorker                  = "Network.setBypassServiceWorker"
	CommandSetCacheDisabled                        = "Network.setCacheDisabled"
	CommandSetCookie                               = "Network.setCookie"
	CommandSetCookies                              = "Network.setCookies"
	CommandSetDataSizeLimitsForTest                = "Network.setDataSizeLimitsForTest"
	CommandSetExtraHTTPHeaders                     = "Network.setExtraHTTPHeaders"
)

Command names.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthChallenge

type AuthChallenge struct {
	Source AuthChallengeSource `json:"source,omitempty"` // Source of the authentication challenge.
	Origin string              `json:"origin"`           // Origin of the challenger.
	Scheme string              `json:"scheme"`           // The authentication scheme used, such as basic or digest
	Realm  string              `json:"realm"`            // The realm of the challenge. May be empty.
}

AuthChallenge authorization challenge for HTTP status code 401 or 407.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-AuthChallenge

func (AuthChallenge) MarshalEasyJSON

func (v AuthChallenge) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AuthChallenge) MarshalJSON

func (v AuthChallenge) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AuthChallenge) UnmarshalEasyJSON

func (v *AuthChallenge) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AuthChallenge) UnmarshalJSON

func (v *AuthChallenge) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AuthChallengeResponse

type AuthChallengeResponse struct {
	Response AuthChallengeResponseResponse `json:"response"`           // The decision on what to do in response to the authorization challenge.  Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.
	Username string                        `json:"username,omitempty"` // The username to provide, possibly empty. Should only be set if response is ProvideCredentials.
	Password string                        `json:"password,omitempty"` // The password to provide, possibly empty. Should only be set if response is ProvideCredentials.
}

AuthChallengeResponse response to an AuthChallenge.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-AuthChallengeResponse

func (AuthChallengeResponse) MarshalEasyJSON

func (v AuthChallengeResponse) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AuthChallengeResponse) MarshalJSON

func (v AuthChallengeResponse) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AuthChallengeResponse) UnmarshalEasyJSON

func (v *AuthChallengeResponse) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AuthChallengeResponse) UnmarshalJSON

func (v *AuthChallengeResponse) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AuthChallengeResponseResponse

type AuthChallengeResponseResponse string

AuthChallengeResponseResponse the decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-response

const (
	AuthChallengeResponseResponseDefault            AuthChallengeResponseResponse = "Default"
	AuthChallengeResponseResponseCancelAuth         AuthChallengeResponseResponse = "CancelAuth"
	AuthChallengeResponseResponseProvideCredentials AuthChallengeResponseResponse = "ProvideCredentials"
)

AuthChallengeResponseResponse values.

func (AuthChallengeResponseResponse) MarshalEasyJSON

func (t AuthChallengeResponseResponse) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (AuthChallengeResponseResponse) MarshalJSON

func (t AuthChallengeResponseResponse) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (AuthChallengeResponseResponse) String

String returns the AuthChallengeResponseResponse as string value.

func (*AuthChallengeResponseResponse) UnmarshalEasyJSON

func (t *AuthChallengeResponseResponse) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*AuthChallengeResponseResponse) UnmarshalJSON

func (t *AuthChallengeResponseResponse) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type AuthChallengeSource

type AuthChallengeSource string

AuthChallengeSource source of the authentication challenge.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-source

const (
	AuthChallengeSourceServer AuthChallengeSource = "Server"
	AuthChallengeSourceProxy  AuthChallengeSource = "Proxy"
)

AuthChallengeSource values.

func (AuthChallengeSource) MarshalEasyJSON

func (t AuthChallengeSource) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (AuthChallengeSource) MarshalJSON

func (t AuthChallengeSource) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (AuthChallengeSource) String

func (t AuthChallengeSource) String() string

String returns the AuthChallengeSource as string value.

func (*AuthChallengeSource) UnmarshalEasyJSON

func (t *AuthChallengeSource) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*AuthChallengeSource) UnmarshalJSON

func (t *AuthChallengeSource) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type BlockedCookieWithReason

type BlockedCookieWithReason struct {
	BlockedReasons []CookieBlockedReason `json:"blockedReasons"` // The reason(s) the cookie was blocked.
	Cookie         *Cookie               `json:"cookie"`         // The cookie object representing the cookie which was not sent.
}

BlockedCookieWithReason a cookie with was not sent with a request with the corresponding reason.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-BlockedCookieWithReason

func (BlockedCookieWithReason) MarshalEasyJSON

func (v BlockedCookieWithReason) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (BlockedCookieWithReason) MarshalJSON

func (v BlockedCookieWithReason) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*BlockedCookieWithReason) UnmarshalEasyJSON

func (v *BlockedCookieWithReason) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*BlockedCookieWithReason) UnmarshalJSON

func (v *BlockedCookieWithReason) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type BlockedReason

type BlockedReason string

BlockedReason the reason why request was blocked.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-BlockedReason

const (
	BlockedReasonOther             BlockedReason = "other"
	BlockedReasonCsp               BlockedReason = "csp"
	BlockedReasonMixedContent      BlockedReason = "mixed-content"
	BlockedReasonOrigin            BlockedReason = "origin"
	BlockedReasonInspector         BlockedReason = "inspector"
	BlockedReasonSubresourceFilter BlockedReason = "subresource-filter"
	BlockedReasonContentType       BlockedReason = "content-type"
	BlockedReasonCollapsedByClient BlockedReason = "collapsed-by-client"
)

BlockedReason values.

func (BlockedReason) MarshalEasyJSON

func (t BlockedReason) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (BlockedReason) MarshalJSON

func (t BlockedReason) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (BlockedReason) String

func (t BlockedReason) String() string

String returns the BlockedReason as string value.

func (*BlockedReason) UnmarshalEasyJSON

func (t *BlockedReason) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*BlockedReason) UnmarshalJSON

func (t *BlockedReason) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type BlockedSetCookieWithReason

type BlockedSetCookieWithReason struct {
	BlockedReasons []SetCookieBlockedReason `json:"blockedReasons"`   // The reason(s) this cookie was blocked.
	CookieLine     string                   `json:"cookieLine"`       // The string representing this individual cookie as it would appear in the header. This is not the entire "cookie" or "set-cookie" header which could have multiple cookies.
	Cookie         *Cookie                  `json:"cookie,omitempty"` // The cookie object which represents the cookie which was not stored. It is optional because sometimes complete cookie information is not available, such as in the case of parsing errors.
}

BlockedSetCookieWithReason a cookie which was not stored from a response with the corresponding reason.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-BlockedSetCookieWithReason

func (BlockedSetCookieWithReason) MarshalEasyJSON

func (v BlockedSetCookieWithReason) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (BlockedSetCookieWithReason) MarshalJSON

func (v BlockedSetCookieWithReason) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*BlockedSetCookieWithReason) UnmarshalEasyJSON

func (v *BlockedSetCookieWithReason) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*BlockedSetCookieWithReason) UnmarshalJSON

func (v *BlockedSetCookieWithReason) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CachedResource

type CachedResource struct {
	URL      string       `json:"url"`                // Resource URL. This is the url of the original network request.
	Type     ResourceType `json:"type"`               // Type of this resource.
	Response *Response    `json:"response,omitempty"` // Cached response data.
	BodySize float64      `json:"bodySize"`           // Cached response body size.
}

CachedResource information about the cached resource.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-CachedResource

func (CachedResource) MarshalEasyJSON

func (v CachedResource) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CachedResource) MarshalJSON

func (v CachedResource) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CachedResource) UnmarshalEasyJSON

func (v *CachedResource) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CachedResource) UnmarshalJSON

func (v *CachedResource) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CertificateTransparencyCompliance

type CertificateTransparencyCompliance string

CertificateTransparencyCompliance whether the request complied with Certificate Transparency policy.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-CertificateTransparencyCompliance

const (
	CertificateTransparencyComplianceUnknown      CertificateTransparencyCompliance = "unknown"
	CertificateTransparencyComplianceNotCompliant CertificateTransparencyCompliance = "not-compliant"
	CertificateTransparencyComplianceCompliant    CertificateTransparencyCompliance = "compliant"
)

CertificateTransparencyCompliance values.

func (CertificateTransparencyCompliance) MarshalEasyJSON

func (t CertificateTransparencyCompliance) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (CertificateTransparencyCompliance) MarshalJSON

func (t CertificateTransparencyCompliance) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (CertificateTransparencyCompliance) String

String returns the CertificateTransparencyCompliance as string value.

func (*CertificateTransparencyCompliance) UnmarshalEasyJSON

func (t *CertificateTransparencyCompliance) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*CertificateTransparencyCompliance) UnmarshalJSON

func (t *CertificateTransparencyCompliance) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ClearBrowserCacheParams

type ClearBrowserCacheParams struct{}

ClearBrowserCacheParams clears browser cache.

func (*ClearBrowserCacheParams) Do

func (p *ClearBrowserCacheParams) Do(ctx context.Context) (err error)

Do executes Network.clearBrowserCache against the provided context.

func (ClearBrowserCacheParams) MarshalEasyJSON

func (v ClearBrowserCacheParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ClearBrowserCacheParams) MarshalJSON

func (v ClearBrowserCacheParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ClearBrowserCacheParams) UnmarshalEasyJSON

func (v *ClearBrowserCacheParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ClearBrowserCacheParams) UnmarshalJSON

func (v *ClearBrowserCacheParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ClearBrowserCookiesParams

type ClearBrowserCookiesParams struct{}

ClearBrowserCookiesParams clears browser cookies.

func (*ClearBrowserCookiesParams) Do

Do executes Network.clearBrowserCookies against the provided context.

func (ClearBrowserCookiesParams) MarshalEasyJSON

func (v ClearBrowserCookiesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ClearBrowserCookiesParams) MarshalJSON

func (v ClearBrowserCookiesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ClearBrowserCookiesParams) UnmarshalEasyJSON

func (v *ClearBrowserCookiesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ClearBrowserCookiesParams) UnmarshalJSON

func (v *ClearBrowserCookiesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ConnectionType

type ConnectionType string

ConnectionType the underlying connection technology that the browser is supposedly using.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-ConnectionType

const (
	ConnectionTypeNone       ConnectionType = "none"
	ConnectionTypeCellular2g ConnectionType = "cellular2g"
	ConnectionTypeCellular3g ConnectionType = "cellular3g"
	ConnectionTypeCellular4g ConnectionType = "cellular4g"
	ConnectionTypeBluetooth  ConnectionType = "bluetooth"
	ConnectionTypeEthernet   ConnectionType = "ethernet"
	ConnectionTypeWifi       ConnectionType = "wifi"
	ConnectionTypeWimax      ConnectionType = "wimax"
	ConnectionTypeOther      ConnectionType = "other"
)

ConnectionType values.

func (ConnectionType) MarshalEasyJSON

func (t ConnectionType) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ConnectionType) MarshalJSON

func (t ConnectionType) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ConnectionType) String

func (t ConnectionType) String() string

String returns the ConnectionType as string value.

func (*ConnectionType) UnmarshalEasyJSON

func (t *ConnectionType) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ConnectionType) UnmarshalJSON

func (t *ConnectionType) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type Cookie struct {
	Name     string         `json:"name"`               // Cookie name.
	Value    string         `json:"value"`              // Cookie value.
	Domain   string         `json:"domain"`             // Cookie domain.
	Path     string         `json:"path"`               // Cookie path.
	Expires  float64        `json:"expires"`            // Cookie expiration date as the number of seconds since the UNIX epoch.
	Size     int64          `json:"size"`               // Cookie size.
	HTTPOnly bool           `json:"httpOnly"`           // True if cookie is http-only.
	Secure   bool           `json:"secure"`             // True if cookie is secure.
	Session  bool           `json:"session"`            // True in case of session cookie.
	SameSite CookieSameSite `json:"sameSite,omitempty"` // Cookie SameSite type.
}

Cookie cookie object.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-Cookie

func (Cookie) MarshalEasyJSON

func (v Cookie) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Cookie) MarshalJSON

func (v Cookie) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Cookie) UnmarshalEasyJSON

func (v *Cookie) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Cookie) UnmarshalJSON

func (v *Cookie) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CookieBlockedReason

type CookieBlockedReason string

CookieBlockedReason types of reasons why a cookie may not be sent with a request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-CookieBlockedReason

const (
	CookieBlockedReasonSecureOnly                      CookieBlockedReason = "SecureOnly"
	CookieBlockedReasonNotOnPath                       CookieBlockedReason = "NotOnPath"
	CookieBlockedReasonDomainMismatch                  CookieBlockedReason = "DomainMismatch"
	CookieBlockedReasonSameSiteStrict                  CookieBlockedReason = "SameSiteStrict"
	CookieBlockedReasonSameSiteLax                     CookieBlockedReason = "SameSiteLax"
	CookieBlockedReasonSameSiteUnspecifiedTreatedAsLax CookieBlockedReason = "SameSiteUnspecifiedTreatedAsLax"
	CookieBlockedReasonSameSiteNoneInsecure            CookieBlockedReason = "SameSiteNoneInsecure"
	CookieBlockedReasonUserPreferences                 CookieBlockedReason = "UserPreferences"
	CookieBlockedReasonUnknownError                    CookieBlockedReason = "UnknownError"
)

CookieBlockedReason values.

func (CookieBlockedReason) MarshalEasyJSON

func (t CookieBlockedReason) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (CookieBlockedReason) MarshalJSON

func (t CookieBlockedReason) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (CookieBlockedReason) String

func (t CookieBlockedReason) String() string

String returns the CookieBlockedReason as string value.

func (*CookieBlockedReason) UnmarshalEasyJSON

func (t *CookieBlockedReason) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*CookieBlockedReason) UnmarshalJSON

func (t *CookieBlockedReason) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type CookieParam

type CookieParam struct {
	Name     string              `json:"name"`               // Cookie name.
	Value    string              `json:"value"`              // Cookie value.
	URL      string              `json:"url,omitempty"`      // The request-URI to associate with the setting of the cookie. This value can affect the default domain and path values of the created cookie.
	Domain   string              `json:"domain,omitempty"`   // Cookie domain.
	Path     string              `json:"path,omitempty"`     // Cookie path.
	Secure   bool                `json:"secure,omitempty"`   // True if cookie is secure.
	HTTPOnly bool                `json:"httpOnly,omitempty"` // True if cookie is http-only.
	SameSite CookieSameSite      `json:"sameSite,omitempty"` // Cookie SameSite type.
	Expires  *cdp.TimeSinceEpoch `json:"expires,omitempty"`  // Cookie expiration date, session cookie if not set
}

CookieParam cookie parameter object.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-CookieParam

func (CookieParam) MarshalEasyJSON

func (v CookieParam) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CookieParam) MarshalJSON

func (v CookieParam) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CookieParam) UnmarshalEasyJSON

func (v *CookieParam) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CookieParam) UnmarshalJSON

func (v *CookieParam) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CookieSameSite

type CookieSameSite string

CookieSameSite represents the cookie's 'SameSite' status: https://tools.ietf.org/html/draft-west-first-party-cookies.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-CookieSameSite

const (
	CookieSameSiteStrict CookieSameSite = "Strict"
	CookieSameSiteLax    CookieSameSite = "Lax"
	CookieSameSiteNone   CookieSameSite = "None"
)

CookieSameSite values.

func (CookieSameSite) MarshalEasyJSON

func (t CookieSameSite) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (CookieSameSite) MarshalJSON

func (t CookieSameSite) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (CookieSameSite) String

func (t CookieSameSite) String() string

String returns the CookieSameSite as string value.

func (*CookieSameSite) UnmarshalEasyJSON

func (t *CookieSameSite) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*CookieSameSite) UnmarshalJSON

func (t *CookieSameSite) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type DeleteCookiesParams

type DeleteCookiesParams struct {
	Name   string `json:"name"`             // Name of the cookies to remove.
	URL    string `json:"url,omitempty"`    // If specified, deletes all the cookies with the given name where domain and path match provided URL.
	Domain string `json:"domain,omitempty"` // If specified, deletes only cookies with the exact domain.
	Path   string `json:"path,omitempty"`   // If specified, deletes only cookies with the exact path.
}

DeleteCookiesParams deletes browser cookies with matching name and url or domain/path pair.

func DeleteCookies

func DeleteCookies(name string) *DeleteCookiesParams

DeleteCookies deletes browser cookies with matching name and url or domain/path pair.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-deleteCookies

parameters:

name - Name of the cookies to remove.

func (*DeleteCookiesParams) Do

func (p *DeleteCookiesParams) Do(ctx context.Context) (err error)

Do executes Network.deleteCookies against the provided context.

func (DeleteCookiesParams) MarshalEasyJSON

func (v DeleteCookiesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DeleteCookiesParams) MarshalJSON

func (v DeleteCookiesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DeleteCookiesParams) UnmarshalEasyJSON

func (v *DeleteCookiesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DeleteCookiesParams) UnmarshalJSON

func (v *DeleteCookiesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (DeleteCookiesParams) WithDomain

func (p DeleteCookiesParams) WithDomain(domain string) *DeleteCookiesParams

WithDomain if specified, deletes only cookies with the exact domain.

func (DeleteCookiesParams) WithPath

WithPath if specified, deletes only cookies with the exact path.

func (DeleteCookiesParams) WithURL

WithURL if specified, deletes all the cookies with the given name where domain and path match provided URL.

type DisableParams

type DisableParams struct{}

DisableParams disables network tracking, prevents network events from being sent to the client.

func Disable

func Disable() *DisableParams

Disable disables network tracking, prevents network events from being sent to the client.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-disable

func (*DisableParams) Do

func (p *DisableParams) Do(ctx context.Context) (err error)

Do executes Network.disable against the provided context.

func (DisableParams) MarshalEasyJSON

func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DisableParams) MarshalJSON

func (v DisableParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DisableParams) UnmarshalEasyJSON

func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DisableParams) UnmarshalJSON

func (v *DisableParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EmulateNetworkConditionsParams

type EmulateNetworkConditionsParams struct {
	Offline            bool           `json:"offline"`                  // True to emulate internet disconnection.
	Latency            float64        `json:"latency"`                  // Minimum latency from request sent to response headers received (ms).
	DownloadThroughput float64        `json:"downloadThroughput"`       // Maximal aggregated download throughput (bytes/sec). -1 disables download throttling.
	UploadThroughput   float64        `json:"uploadThroughput"`         // Maximal aggregated upload throughput (bytes/sec).  -1 disables upload throttling.
	ConnectionType     ConnectionType `json:"connectionType,omitempty"` // Connection type if known.
}

EmulateNetworkConditionsParams activates emulation of network conditions.

func EmulateNetworkConditions

func EmulateNetworkConditions(offline bool, latency float64, downloadThroughput float64, uploadThroughput float64) *EmulateNetworkConditionsParams

EmulateNetworkConditions activates emulation of network conditions.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-emulateNetworkConditions

parameters:

offline - True to emulate internet disconnection.
latency - Minimum latency from request sent to response headers received (ms).
downloadThroughput - Maximal aggregated download throughput (bytes/sec). -1 disables download throttling.
uploadThroughput - Maximal aggregated upload throughput (bytes/sec).  -1 disables upload throttling.

func (*EmulateNetworkConditionsParams) Do

Do executes Network.emulateNetworkConditions against the provided context.

func (EmulateNetworkConditionsParams) MarshalEasyJSON

func (v EmulateNetworkConditionsParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EmulateNetworkConditionsParams) MarshalJSON

func (v EmulateNetworkConditionsParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EmulateNetworkConditionsParams) UnmarshalEasyJSON

func (v *EmulateNetworkConditionsParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EmulateNetworkConditionsParams) UnmarshalJSON

func (v *EmulateNetworkConditionsParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (EmulateNetworkConditionsParams) WithConnectionType

WithConnectionType connection type if known.

type EnableParams

type EnableParams struct {
	MaxTotalBufferSize    int64 `json:"maxTotalBufferSize,omitempty"`    // Buffer size in bytes to use when preserving network payloads (XHRs, etc).
	MaxResourceBufferSize int64 `json:"maxResourceBufferSize,omitempty"` // Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
	MaxPostDataSize       int64 `json:"maxPostDataSize,omitempty"`       // Longest post body size (in bytes) that would be included in requestWillBeSent notification
}

EnableParams enables network tracking, network events will now be delivered to the client.

func Enable

func Enable() *EnableParams

Enable enables network tracking, network events will now be delivered to the client.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-enable

parameters:

func (*EnableParams) Do

func (p *EnableParams) Do(ctx context.Context) (err error)

Do executes Network.enable against the provided context.

func (EnableParams) MarshalEasyJSON

func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnableParams) MarshalJSON

func (v EnableParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnableParams) UnmarshalEasyJSON

func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnableParams) UnmarshalJSON

func (v *EnableParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (EnableParams) WithMaxPostDataSize

func (p EnableParams) WithMaxPostDataSize(maxPostDataSize int64) *EnableParams

WithMaxPostDataSize longest post body size (in bytes) that would be included in requestWillBeSent notification.

func (EnableParams) WithMaxResourceBufferSize

func (p EnableParams) WithMaxResourceBufferSize(maxResourceBufferSize int64) *EnableParams

WithMaxResourceBufferSize per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).

func (EnableParams) WithMaxTotalBufferSize

func (p EnableParams) WithMaxTotalBufferSize(maxTotalBufferSize int64) *EnableParams

WithMaxTotalBufferSize buffer size in bytes to use when preserving network payloads (XHRs, etc).

type ErrorReason

type ErrorReason string

ErrorReason network level fetch failure reason.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-ErrorReason

const (
	ErrorReasonFailed               ErrorReason = "Failed"
	ErrorReasonAborted              ErrorReason = "Aborted"
	ErrorReasonTimedOut             ErrorReason = "TimedOut"
	ErrorReasonAccessDenied         ErrorReason = "AccessDenied"
	ErrorReasonConnectionClosed     ErrorReason = "ConnectionClosed"
	ErrorReasonConnectionReset      ErrorReason = "ConnectionReset"
	ErrorReasonConnectionRefused    ErrorReason = "ConnectionRefused"
	ErrorReasonConnectionAborted    ErrorReason = "ConnectionAborted"
	ErrorReasonConnectionFailed     ErrorReason = "ConnectionFailed"
	ErrorReasonNameNotResolved      ErrorReason = "NameNotResolved"
	ErrorReasonInternetDisconnected ErrorReason = "InternetDisconnected"
	ErrorReasonAddressUnreachable   ErrorReason = "AddressUnreachable"
	ErrorReasonBlockedByClient      ErrorReason = "BlockedByClient"
	ErrorReasonBlockedByResponse    ErrorReason = "BlockedByResponse"
)

ErrorReason values.

func (ErrorReason) MarshalEasyJSON

func (t ErrorReason) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ErrorReason) MarshalJSON

func (t ErrorReason) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ErrorReason) String

func (t ErrorReason) String() string

String returns the ErrorReason as string value.

func (*ErrorReason) UnmarshalEasyJSON

func (t *ErrorReason) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ErrorReason) UnmarshalJSON

func (t *ErrorReason) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type EventDataReceived

type EventDataReceived struct {
	RequestID         RequestID          `json:"requestId"`         // Request identifier.
	Timestamp         *cdp.MonotonicTime `json:"timestamp"`         // Timestamp.
	DataLength        int64              `json:"dataLength"`        // Data chunk length.
	EncodedDataLength int64              `json:"encodedDataLength"` // Actual bytes received (might be less than dataLength for compressed encodings).
}

EventDataReceived fired when data chunk was received over the network.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-dataReceived

func (EventDataReceived) MarshalEasyJSON

func (v EventDataReceived) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventDataReceived) MarshalJSON

func (v EventDataReceived) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventDataReceived) UnmarshalEasyJSON

func (v *EventDataReceived) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventDataReceived) UnmarshalJSON

func (v *EventDataReceived) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventEventSourceMessageReceived

type EventEventSourceMessageReceived struct {
	RequestID RequestID          `json:"requestId"` // Request identifier.
	Timestamp *cdp.MonotonicTime `json:"timestamp"` // Timestamp.
	EventName string             `json:"eventName"` // Message type.
	EventID   string             `json:"eventId"`   // Message identifier.
	Data      string             `json:"data"`      // Message content.
}

EventEventSourceMessageReceived fired when EventSource message is received.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-eventSourceMessageReceived

func (EventEventSourceMessageReceived) MarshalEasyJSON

func (v EventEventSourceMessageReceived) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventEventSourceMessageReceived) MarshalJSON

func (v EventEventSourceMessageReceived) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventEventSourceMessageReceived) UnmarshalEasyJSON

func (v *EventEventSourceMessageReceived) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventEventSourceMessageReceived) UnmarshalJSON

func (v *EventEventSourceMessageReceived) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventLoadingFailed

type EventLoadingFailed struct {
	RequestID     RequestID          `json:"requestId"`               // Request identifier.
	Timestamp     *cdp.MonotonicTime `json:"timestamp"`               // Timestamp.
	Type          ResourceType       `json:"type"`                    // Resource type.
	ErrorText     string             `json:"errorText"`               // User friendly error message.
	Canceled      bool               `json:"canceled,omitempty"`      // True if loading was canceled.
	BlockedReason BlockedReason      `json:"blockedReason,omitempty"` // The reason why loading was blocked, if any.
}

EventLoadingFailed fired when HTTP request has failed to load.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-loadingFailed

func (EventLoadingFailed) MarshalEasyJSON

func (v EventLoadingFailed) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventLoadingFailed) MarshalJSON

func (v EventLoadingFailed) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventLoadingFailed) UnmarshalEasyJSON

func (v *EventLoadingFailed) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventLoadingFailed) UnmarshalJSON

func (v *EventLoadingFailed) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventLoadingFinished

type EventLoadingFinished struct {
	RequestID                RequestID          `json:"requestId"`                          // Request identifier.
	Timestamp                *cdp.MonotonicTime `json:"timestamp"`                          // Timestamp.
	EncodedDataLength        float64            `json:"encodedDataLength"`                  // Total number of bytes received for this request.
	ShouldReportCorbBlocking bool               `json:"shouldReportCorbBlocking,omitempty"` // Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console.
}

EventLoadingFinished fired when HTTP request has finished loading.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-loadingFinished

func (EventLoadingFinished) MarshalEasyJSON

func (v EventLoadingFinished) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventLoadingFinished) MarshalJSON

func (v EventLoadingFinished) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventLoadingFinished) UnmarshalEasyJSON

func (v *EventLoadingFinished) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventLoadingFinished) UnmarshalJSON

func (v *EventLoadingFinished) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventRequestServedFromCache

type EventRequestServedFromCache struct {
	RequestID RequestID `json:"requestId"` // Request identifier.
}

EventRequestServedFromCache fired if request ended up loading from cache.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-requestServedFromCache

func (EventRequestServedFromCache) MarshalEasyJSON

func (v EventRequestServedFromCache) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventRequestServedFromCache) MarshalJSON

func (v EventRequestServedFromCache) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventRequestServedFromCache) UnmarshalEasyJSON

func (v *EventRequestServedFromCache) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventRequestServedFromCache) UnmarshalJSON

func (v *EventRequestServedFromCache) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventRequestWillBeSent

type EventRequestWillBeSent struct {
	RequestID        RequestID           `json:"requestId"`                  // Request identifier.
	LoaderID         cdp.LoaderID        `json:"loaderId"`                   // Loader identifier. Empty string if the request is fetched from worker.
	DocumentURL      string              `json:"documentURL"`                // URL of the document this request is loaded for.
	Request          *Request            `json:"request"`                    // Request data.
	Timestamp        *cdp.MonotonicTime  `json:"timestamp"`                  // Timestamp.
	WallTime         *cdp.TimeSinceEpoch `json:"wallTime"`                   // Timestamp.
	Initiator        *Initiator          `json:"initiator"`                  // Request initiator.
	RedirectResponse *Response           `json:"redirectResponse,omitempty"` // Redirect response data.
	Type             ResourceType        `json:"type,omitempty"`             // Type of this resource.
	FrameID          cdp.FrameID         `json:"frameId,omitempty"`          // Frame identifier.
	HasUserGesture   bool                `json:"hasUserGesture,omitempty"`   // Whether the request is initiated by a user gesture. Defaults to false.
}

EventRequestWillBeSent fired when page is about to send HTTP request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-requestWillBeSent

func (EventRequestWillBeSent) MarshalEasyJSON

func (v EventRequestWillBeSent) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventRequestWillBeSent) MarshalJSON

func (v EventRequestWillBeSent) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventRequestWillBeSent) UnmarshalEasyJSON

func (v *EventRequestWillBeSent) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventRequestWillBeSent) UnmarshalJSON

func (v *EventRequestWillBeSent) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventRequestWillBeSentExtraInfo

type EventRequestWillBeSentExtraInfo struct {
	RequestID      RequestID                  `json:"requestId"`      // Request identifier. Used to match this information to an existing requestWillBeSent event.
	BlockedCookies []*BlockedCookieWithReason `json:"blockedCookies"` // A list of cookies which will not be sent with this request along with corresponding reasons for blocking.
	Headers        Headers                    `json:"headers"`        // Raw request headers as they will be sent over the wire.
}

EventRequestWillBeSentExtraInfo fired when additional information about a requestWillBeSent event is available from the network stack. Not every requestWillBeSent event will have an additional requestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent or requestWillBeSentExtraInfo will be fired first for the same request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-requestWillBeSentExtraInfo

func (EventRequestWillBeSentExtraInfo) MarshalEasyJSON

func (v EventRequestWillBeSentExtraInfo) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventRequestWillBeSentExtraInfo) MarshalJSON

func (v EventRequestWillBeSentExtraInfo) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventRequestWillBeSentExtraInfo) UnmarshalEasyJSON

func (v *EventRequestWillBeSentExtraInfo) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventRequestWillBeSentExtraInfo) UnmarshalJSON

func (v *EventRequestWillBeSentExtraInfo) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventResourceChangedPriority

type EventResourceChangedPriority struct {
	RequestID   RequestID          `json:"requestId"`   // Request identifier.
	NewPriority ResourcePriority   `json:"newPriority"` // New priority
	Timestamp   *cdp.MonotonicTime `json:"timestamp"`   // Timestamp.
}

EventResourceChangedPriority fired when resource loading priority is changed.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-resourceChangedPriority

func (EventResourceChangedPriority) MarshalEasyJSON

func (v EventResourceChangedPriority) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventResourceChangedPriority) MarshalJSON

func (v EventResourceChangedPriority) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventResourceChangedPriority) UnmarshalEasyJSON

func (v *EventResourceChangedPriority) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventResourceChangedPriority) UnmarshalJSON

func (v *EventResourceChangedPriority) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventResponseReceived

type EventResponseReceived struct {
	RequestID RequestID          `json:"requestId"`         // Request identifier.
	LoaderID  cdp.LoaderID       `json:"loaderId"`          // Loader identifier. Empty string if the request is fetched from worker.
	Timestamp *cdp.MonotonicTime `json:"timestamp"`         // Timestamp.
	Type      ResourceType       `json:"type"`              // Resource type.
	Response  *Response          `json:"response"`          // Response data.
	FrameID   cdp.FrameID        `json:"frameId,omitempty"` // Frame identifier.
}

EventResponseReceived fired when HTTP response is available.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-responseReceived

func (EventResponseReceived) MarshalEasyJSON

func (v EventResponseReceived) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventResponseReceived) MarshalJSON

func (v EventResponseReceived) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventResponseReceived) UnmarshalEasyJSON

func (v *EventResponseReceived) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventResponseReceived) UnmarshalJSON

func (v *EventResponseReceived) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventResponseReceivedExtraInfo

type EventResponseReceivedExtraInfo struct {
	RequestID      RequestID                     `json:"requestId"`             // Request identifier. Used to match this information to another responseReceived event.
	BlockedCookies []*BlockedSetCookieWithReason `json:"blockedCookies"`        // A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie.
	Headers        Headers                       `json:"headers"`               // Raw response headers as they were received over the wire.
	HeadersText    string                        `json:"headersText,omitempty"` // Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC.
}

EventResponseReceivedExtraInfo fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-responseReceivedExtraInfo

func (EventResponseReceivedExtraInfo) MarshalEasyJSON

func (v EventResponseReceivedExtraInfo) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventResponseReceivedExtraInfo) MarshalJSON

func (v EventResponseReceivedExtraInfo) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventResponseReceivedExtraInfo) UnmarshalEasyJSON

func (v *EventResponseReceivedExtraInfo) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventResponseReceivedExtraInfo) UnmarshalJSON

func (v *EventResponseReceivedExtraInfo) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventSignedExchangeReceived

type EventSignedExchangeReceived struct {
	RequestID RequestID           `json:"requestId"` // Request identifier.
	Info      *SignedExchangeInfo `json:"info"`      // Information about the signed exchange response.
}

EventSignedExchangeReceived fired when a signed exchange was received over the network.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-signedExchangeReceived

func (EventSignedExchangeReceived) MarshalEasyJSON

func (v EventSignedExchangeReceived) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventSignedExchangeReceived) MarshalJSON

func (v EventSignedExchangeReceived) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventSignedExchangeReceived) UnmarshalEasyJSON

func (v *EventSignedExchangeReceived) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventSignedExchangeReceived) UnmarshalJSON

func (v *EventSignedExchangeReceived) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketClosed

type EventWebSocketClosed struct {
	RequestID RequestID          `json:"requestId"` // Request identifier.
	Timestamp *cdp.MonotonicTime `json:"timestamp"` // Timestamp.
}

EventWebSocketClosed fired when WebSocket is closed.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketClosed

func (EventWebSocketClosed) MarshalEasyJSON

func (v EventWebSocketClosed) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketClosed) MarshalJSON

func (v EventWebSocketClosed) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketClosed) UnmarshalEasyJSON

func (v *EventWebSocketClosed) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketClosed) UnmarshalJSON

func (v *EventWebSocketClosed) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketCreated

type EventWebSocketCreated struct {
	RequestID RequestID  `json:"requestId"`           // Request identifier.
	URL       string     `json:"url"`                 // WebSocket request URL.
	Initiator *Initiator `json:"initiator,omitempty"` // Request initiator.
}

EventWebSocketCreated fired upon WebSocket creation.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketCreated

func (EventWebSocketCreated) MarshalEasyJSON

func (v EventWebSocketCreated) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketCreated) MarshalJSON

func (v EventWebSocketCreated) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketCreated) UnmarshalEasyJSON

func (v *EventWebSocketCreated) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketCreated) UnmarshalJSON

func (v *EventWebSocketCreated) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketFrameError

type EventWebSocketFrameError struct {
	RequestID    RequestID          `json:"requestId"`    // Request identifier.
	Timestamp    *cdp.MonotonicTime `json:"timestamp"`    // Timestamp.
	ErrorMessage string             `json:"errorMessage"` // WebSocket error message.
}

EventWebSocketFrameError fired when WebSocket message error occurs.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketFrameError

func (EventWebSocketFrameError) MarshalEasyJSON

func (v EventWebSocketFrameError) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketFrameError) MarshalJSON

func (v EventWebSocketFrameError) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketFrameError) UnmarshalEasyJSON

func (v *EventWebSocketFrameError) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketFrameError) UnmarshalJSON

func (v *EventWebSocketFrameError) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketFrameReceived

type EventWebSocketFrameReceived struct {
	RequestID RequestID          `json:"requestId"` // Request identifier.
	Timestamp *cdp.MonotonicTime `json:"timestamp"` // Timestamp.
	Response  *WebSocketFrame    `json:"response"`  // WebSocket response data.
}

EventWebSocketFrameReceived fired when WebSocket message is received.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketFrameReceived

func (EventWebSocketFrameReceived) MarshalEasyJSON

func (v EventWebSocketFrameReceived) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketFrameReceived) MarshalJSON

func (v EventWebSocketFrameReceived) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketFrameReceived) UnmarshalEasyJSON

func (v *EventWebSocketFrameReceived) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketFrameReceived) UnmarshalJSON

func (v *EventWebSocketFrameReceived) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketFrameSent

type EventWebSocketFrameSent struct {
	RequestID RequestID          `json:"requestId"` // Request identifier.
	Timestamp *cdp.MonotonicTime `json:"timestamp"` // Timestamp.
	Response  *WebSocketFrame    `json:"response"`  // WebSocket response data.
}

EventWebSocketFrameSent fired when WebSocket message is sent.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketFrameSent

func (EventWebSocketFrameSent) MarshalEasyJSON

func (v EventWebSocketFrameSent) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketFrameSent) MarshalJSON

func (v EventWebSocketFrameSent) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketFrameSent) UnmarshalEasyJSON

func (v *EventWebSocketFrameSent) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketFrameSent) UnmarshalJSON

func (v *EventWebSocketFrameSent) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketHandshakeResponseReceived

type EventWebSocketHandshakeResponseReceived struct {
	RequestID RequestID          `json:"requestId"` // Request identifier.
	Timestamp *cdp.MonotonicTime `json:"timestamp"` // Timestamp.
	Response  *WebSocketResponse `json:"response"`  // WebSocket response data.
}

EventWebSocketHandshakeResponseReceived fired when WebSocket handshake response becomes available.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketHandshakeResponseReceived

func (EventWebSocketHandshakeResponseReceived) MarshalEasyJSON

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketHandshakeResponseReceived) MarshalJSON

func (v EventWebSocketHandshakeResponseReceived) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketHandshakeResponseReceived) UnmarshalEasyJSON

func (v *EventWebSocketHandshakeResponseReceived) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketHandshakeResponseReceived) UnmarshalJSON

func (v *EventWebSocketHandshakeResponseReceived) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EventWebSocketWillSendHandshakeRequest

type EventWebSocketWillSendHandshakeRequest struct {
	RequestID RequestID           `json:"requestId"` // Request identifier.
	Timestamp *cdp.MonotonicTime  `json:"timestamp"` // Timestamp.
	WallTime  *cdp.TimeSinceEpoch `json:"wallTime"`  // UTC Timestamp.
	Request   *WebSocketRequest   `json:"request"`   // WebSocket request data.
}

EventWebSocketWillSendHandshakeRequest fired when WebSocket is about to initiate handshake.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#event-webSocketWillSendHandshakeRequest

func (EventWebSocketWillSendHandshakeRequest) MarshalEasyJSON

MarshalEasyJSON supports easyjson.Marshaler interface

func (EventWebSocketWillSendHandshakeRequest) MarshalJSON

func (v EventWebSocketWillSendHandshakeRequest) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EventWebSocketWillSendHandshakeRequest) UnmarshalEasyJSON

func (v *EventWebSocketWillSendHandshakeRequest) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EventWebSocketWillSendHandshakeRequest) UnmarshalJSON

func (v *EventWebSocketWillSendHandshakeRequest) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetAllCookiesParams

type GetAllCookiesParams struct{}

GetAllCookiesParams returns all browser cookies. Depending on the backend support, will return detailed cookie information in the cookies field.

func GetAllCookies

func GetAllCookies() *GetAllCookiesParams

GetAllCookies returns all browser cookies. Depending on the backend support, will return detailed cookie information in the cookies field.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-getAllCookies

func (*GetAllCookiesParams) Do

func (p *GetAllCookiesParams) Do(ctx context.Context) (cookies []*Cookie, err error)

Do executes Network.getAllCookies against the provided context.

returns:

cookies - Array of cookie objects.

func (GetAllCookiesParams) MarshalEasyJSON

func (v GetAllCookiesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetAllCookiesParams) MarshalJSON

func (v GetAllCookiesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetAllCookiesParams) UnmarshalEasyJSON

func (v *GetAllCookiesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetAllCookiesParams) UnmarshalJSON

func (v *GetAllCookiesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetAllCookiesReturns

type GetAllCookiesReturns struct {
	Cookies []*Cookie `json:"cookies,omitempty"` // Array of cookie objects.
}

GetAllCookiesReturns return values.

func (GetAllCookiesReturns) MarshalEasyJSON

func (v GetAllCookiesReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetAllCookiesReturns) MarshalJSON

func (v GetAllCookiesReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetAllCookiesReturns) UnmarshalEasyJSON

func (v *GetAllCookiesReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetAllCookiesReturns) UnmarshalJSON

func (v *GetAllCookiesReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCertificateParams

type GetCertificateParams struct {
	Origin string `json:"origin"` // Origin to get certificate for.
}

GetCertificateParams returns the DER-encoded certificate.

func GetCertificate

func GetCertificate(origin string) *GetCertificateParams

GetCertificate returns the DER-encoded certificate.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-getCertificate

parameters:

origin - Origin to get certificate for.

func (*GetCertificateParams) Do

func (p *GetCertificateParams) Do(ctx context.Context) (tableNames []string, err error)

Do executes Network.getCertificate against the provided context.

returns:

tableNames

func (GetCertificateParams) MarshalEasyJSON

func (v GetCertificateParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCertificateParams) MarshalJSON

func (v GetCertificateParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCertificateParams) UnmarshalEasyJSON

func (v *GetCertificateParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCertificateParams) UnmarshalJSON

func (v *GetCertificateParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCertificateReturns

type GetCertificateReturns struct {
	TableNames []string `json:"tableNames,omitempty"`
}

GetCertificateReturns return values.

func (GetCertificateReturns) MarshalEasyJSON

func (v GetCertificateReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCertificateReturns) MarshalJSON

func (v GetCertificateReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCertificateReturns) UnmarshalEasyJSON

func (v *GetCertificateReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCertificateReturns) UnmarshalJSON

func (v *GetCertificateReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCookiesParams

type GetCookiesParams struct {
	Urls []string `json:"urls,omitempty"` // The list of URLs for which applicable cookies will be fetched
}

GetCookiesParams returns all browser cookies for the current URL. Depending on the backend support, will return detailed cookie information in the cookies field.

func GetCookies

func GetCookies() *GetCookiesParams

GetCookies returns all browser cookies for the current URL. Depending on the backend support, will return detailed cookie information in the cookies field.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-getCookies

parameters:

func (*GetCookiesParams) Do

func (p *GetCookiesParams) Do(ctx context.Context) (cookies []*Cookie, err error)

Do executes Network.getCookies against the provided context.

returns:

cookies - Array of cookie objects.

func (GetCookiesParams) MarshalEasyJSON

func (v GetCookiesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCookiesParams) MarshalJSON

func (v GetCookiesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCookiesParams) UnmarshalEasyJSON

func (v *GetCookiesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCookiesParams) UnmarshalJSON

func (v *GetCookiesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (GetCookiesParams) WithUrls

func (p GetCookiesParams) WithUrls(urls []string) *GetCookiesParams

WithUrls the list of URLs for which applicable cookies will be fetched.

type GetCookiesReturns

type GetCookiesReturns struct {
	Cookies []*Cookie `json:"cookies,omitempty"` // Array of cookie objects.
}

GetCookiesReturns return values.

func (GetCookiesReturns) MarshalEasyJSON

func (v GetCookiesReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCookiesReturns) MarshalJSON

func (v GetCookiesReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCookiesReturns) UnmarshalEasyJSON

func (v *GetCookiesReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCookiesReturns) UnmarshalJSON

func (v *GetCookiesReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetRequestPostDataParams

type GetRequestPostDataParams struct {
	RequestID RequestID `json:"requestId"` // Identifier of the network request to get content for.
}

GetRequestPostDataParams returns post data sent with the request. Returns an error when no data was sent with the request.

func GetRequestPostData

func GetRequestPostData(requestID RequestID) *GetRequestPostDataParams

GetRequestPostData returns post data sent with the request. Returns an error when no data was sent with the request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-getRequestPostData

parameters:

requestID - Identifier of the network request to get content for.

func (*GetRequestPostDataParams) Do

func (p *GetRequestPostDataParams) Do(ctx context.Context) (postData string, err error)

Do executes Network.getRequestPostData against the provided context.

returns:

postData - Request body string, omitting files from multipart requests

func (GetRequestPostDataParams) MarshalEasyJSON

func (v GetRequestPostDataParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetRequestPostDataParams) MarshalJSON

func (v GetRequestPostDataParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetRequestPostDataParams) UnmarshalEasyJSON

func (v *GetRequestPostDataParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetRequestPostDataParams) UnmarshalJSON

func (v *GetRequestPostDataParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetRequestPostDataReturns

type GetRequestPostDataReturns struct {
	PostData string `json:"postData,omitempty"` // Request body string, omitting files from multipart requests
}

GetRequestPostDataReturns return values.

func (GetRequestPostDataReturns) MarshalEasyJSON

func (v GetRequestPostDataReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetRequestPostDataReturns) MarshalJSON

func (v GetRequestPostDataReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetRequestPostDataReturns) UnmarshalEasyJSON

func (v *GetRequestPostDataReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetRequestPostDataReturns) UnmarshalJSON

func (v *GetRequestPostDataReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetResponseBodyForInterceptionParams

type GetResponseBodyForInterceptionParams struct {
	InterceptionID InterceptionID `json:"interceptionId"` // Identifier for the intercepted request to get body for.
}

GetResponseBodyForInterceptionParams returns content served for the given currently intercepted request.

func GetResponseBodyForInterception

func GetResponseBodyForInterception(interceptionID InterceptionID) *GetResponseBodyForInterceptionParams

GetResponseBodyForInterception returns content served for the given currently intercepted request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-getResponseBodyForInterception

parameters:

interceptionID - Identifier for the intercepted request to get body for.

func (*GetResponseBodyForInterceptionParams) Do

Do executes Network.getResponseBodyForInterception against the provided context.

returns:

body - Response body.

func (GetResponseBodyForInterceptionParams) MarshalEasyJSON

func (v GetResponseBodyForInterceptionParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetResponseBodyForInterceptionParams) MarshalJSON

func (v GetResponseBodyForInterceptionParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetResponseBodyForInterceptionParams) UnmarshalEasyJSON

func (v *GetResponseBodyForInterceptionParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetResponseBodyForInterceptionParams) UnmarshalJSON

func (v *GetResponseBodyForInterceptionParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetResponseBodyForInterceptionReturns

type GetResponseBodyForInterceptionReturns struct {
	Body          string `json:"body,omitempty"`          // Response body.
	Base64encoded bool   `json:"base64Encoded,omitempty"` // True, if content was sent as base64.
}

GetResponseBodyForInterceptionReturns return values.

func (GetResponseBodyForInterceptionReturns) MarshalEasyJSON

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetResponseBodyForInterceptionReturns) MarshalJSON

func (v GetResponseBodyForInterceptionReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetResponseBodyForInterceptionReturns) UnmarshalEasyJSON

func (v *GetResponseBodyForInterceptionReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetResponseBodyForInterceptionReturns) UnmarshalJSON

func (v *GetResponseBodyForInterceptionReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetResponseBodyParams

type GetResponseBodyParams struct {
	RequestID RequestID `json:"requestId"` // Identifier of the network request to get content for.
}

GetResponseBodyParams returns content served for the given request.

func GetResponseBody

func GetResponseBody(requestID RequestID) *GetResponseBodyParams

GetResponseBody returns content served for the given request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-getResponseBody

parameters:

requestID - Identifier of the network request to get content for.

func (*GetResponseBodyParams) Do

func (p *GetResponseBodyParams) Do(ctx context.Context) (body []byte, err error)

Do executes Network.getResponseBody against the provided context.

returns:

body - Response body.

func (GetResponseBodyParams) MarshalEasyJSON

func (v GetResponseBodyParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetResponseBodyParams) MarshalJSON

func (v GetResponseBodyParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetResponseBodyParams) UnmarshalEasyJSON

func (v *GetResponseBodyParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetResponseBodyParams) UnmarshalJSON

func (v *GetResponseBodyParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetResponseBodyReturns

type GetResponseBodyReturns struct {
	Body          string `json:"body,omitempty"`          // Response body.
	Base64encoded bool   `json:"base64Encoded,omitempty"` // True, if content was sent as base64.
}

GetResponseBodyReturns return values.

func (GetResponseBodyReturns) MarshalEasyJSON

func (v GetResponseBodyReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetResponseBodyReturns) MarshalJSON

func (v GetResponseBodyReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetResponseBodyReturns) UnmarshalEasyJSON

func (v *GetResponseBodyReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetResponseBodyReturns) UnmarshalJSON

func (v *GetResponseBodyReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Headers

type Headers map[string]interface{}

Headers request / response headers as keys / values of JSON object.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-Headers

type Initiator

type Initiator struct {
	Type       InitiatorType       `json:"type"`                 // Type of this initiator.
	Stack      *runtime.StackTrace `json:"stack,omitempty"`      // Initiator JavaScript stack trace, set for Script only.
	URL        string              `json:"url,omitempty"`        // Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.
	LineNumber float64             `json:"lineNumber,omitempty"` // Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based).
}

Initiator information about the request initiator.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-Initiator

func (Initiator) MarshalEasyJSON

func (v Initiator) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Initiator) MarshalJSON

func (v Initiator) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Initiator) UnmarshalEasyJSON

func (v *Initiator) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Initiator) UnmarshalJSON

func (v *Initiator) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type InitiatorType

type InitiatorType string

InitiatorType type of this initiator.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-type

const (
	InitiatorTypeParser         InitiatorType = "parser"
	InitiatorTypeScript         InitiatorType = "script"
	InitiatorTypePreload        InitiatorType = "preload"
	InitiatorTypeSignedExchange InitiatorType = "SignedExchange"
	InitiatorTypeOther          InitiatorType = "other"
)

InitiatorType values.

func (InitiatorType) MarshalEasyJSON

func (t InitiatorType) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (InitiatorType) MarshalJSON

func (t InitiatorType) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (InitiatorType) String

func (t InitiatorType) String() string

String returns the InitiatorType as string value.

func (*InitiatorType) UnmarshalEasyJSON

func (t *InitiatorType) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*InitiatorType) UnmarshalJSON

func (t *InitiatorType) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type InterceptionID

type InterceptionID string

InterceptionID unique intercepted request identifier.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-InterceptionId

func (InterceptionID) String

func (t InterceptionID) String() string

String returns the InterceptionID as string value.

type InterceptionStage

type InterceptionStage string

InterceptionStage stages of the interception to begin intercepting. Request will intercept before the request is sent. Response will intercept after the response is received.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-InterceptionStage

const (
	InterceptionStageRequest         InterceptionStage = "Request"
	InterceptionStageHeadersReceived InterceptionStage = "HeadersReceived"
)

InterceptionStage values.

func (InterceptionStage) MarshalEasyJSON

func (t InterceptionStage) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (InterceptionStage) MarshalJSON

func (t InterceptionStage) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (InterceptionStage) String

func (t InterceptionStage) String() string

String returns the InterceptionStage as string value.

func (*InterceptionStage) UnmarshalEasyJSON

func (t *InterceptionStage) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*InterceptionStage) UnmarshalJSON

func (t *InterceptionStage) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ReferrerPolicy

type ReferrerPolicy string

ReferrerPolicy the referrer policy of the request, as defined in https://www.w3.org/TR/referrer-policy/.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-referrerPolicy

const (
	ReferrerPolicyUnsafeURL                   ReferrerPolicy = "unsafe-url"
	ReferrerPolicyNoReferrerWhenDowngrade     ReferrerPolicy = "no-referrer-when-downgrade"
	ReferrerPolicyNoReferrer                  ReferrerPolicy = "no-referrer"
	ReferrerPolicyOrigin                      ReferrerPolicy = "origin"
	ReferrerPolicyOriginWhenCrossOrigin       ReferrerPolicy = "origin-when-cross-origin"
	ReferrerPolicySameOrigin                  ReferrerPolicy = "same-origin"
	ReferrerPolicyStrictOrigin                ReferrerPolicy = "strict-origin"
	ReferrerPolicyStrictOriginWhenCrossOrigin ReferrerPolicy = "strict-origin-when-cross-origin"
)

ReferrerPolicy values.

func (ReferrerPolicy) MarshalEasyJSON

func (t ReferrerPolicy) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ReferrerPolicy) MarshalJSON

func (t ReferrerPolicy) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ReferrerPolicy) String

func (t ReferrerPolicy) String() string

String returns the ReferrerPolicy as string value.

func (*ReferrerPolicy) UnmarshalEasyJSON

func (t *ReferrerPolicy) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ReferrerPolicy) UnmarshalJSON

func (t *ReferrerPolicy) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ReplayXHRParams

type ReplayXHRParams struct {
	RequestID RequestID `json:"requestId"` // Identifier of XHR to replay.
}

ReplayXHRParams 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.

func ReplayXHR

func ReplayXHR(requestID RequestID) *ReplayXHRParams

ReplayXHR 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.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-replayXHR

parameters:

requestID - Identifier of XHR to replay.

func (*ReplayXHRParams) Do

func (p *ReplayXHRParams) Do(ctx context.Context) (err error)

Do executes Network.replayXHR against the provided context.

func (ReplayXHRParams) MarshalEasyJSON

func (v ReplayXHRParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ReplayXHRParams) MarshalJSON

func (v ReplayXHRParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ReplayXHRParams) UnmarshalEasyJSON

func (v *ReplayXHRParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ReplayXHRParams) UnmarshalJSON

func (v *ReplayXHRParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Request

type Request struct {
	URL              string                    `json:"url"`                        // Request URL (without fragment).
	URLFragment      string                    `json:"urlFragment,omitempty"`      // Fragment of the requested URL starting with hash, if present.
	Method           string                    `json:"method"`                     // HTTP request method.
	Headers          Headers                   `json:"headers"`                    // HTTP request headers.
	PostData         string                    `json:"postData,omitempty"`         // HTTP POST request data.
	HasPostData      bool                      `json:"hasPostData,omitempty"`      // True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long.
	MixedContentType security.MixedContentType `json:"mixedContentType,omitempty"` // The mixed content type of the request.
	InitialPriority  ResourcePriority          `json:"initialPriority"`            // Priority of the resource request at the time request is sent.
	ReferrerPolicy   ReferrerPolicy            `json:"referrerPolicy"`             // The referrer policy of the request, as defined in https://www.w3.org/TR/referrer-policy/
	IsLinkPreload    bool                      `json:"isLinkPreload,omitempty"`    // Whether is loaded via link preload.
}

Request HTTP request data.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-Request

func (Request) MarshalEasyJSON

func (v Request) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Request) MarshalJSON

func (v Request) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Request) UnmarshalEasyJSON

func (v *Request) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Request) UnmarshalJSON

func (v *Request) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RequestID

type RequestID string

RequestID unique request identifier.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-RequestId

func (RequestID) String

func (t RequestID) String() string

String returns the RequestID as string value.

type RequestPattern

type RequestPattern struct {
	URLPattern        string            `json:"urlPattern,omitempty"`        // Wildcards ('*' -> zero or more, '?' -> exactly one) are allowed. Escape character is backslash. Omitting is equivalent to "*".
	ResourceType      ResourceType      `json:"resourceType,omitempty"`      // If set, only requests for matching resource types will be intercepted.
	InterceptionStage InterceptionStage `json:"interceptionStage,omitempty"` // Stage at which to begin intercepting requests. Default is Request.
}

RequestPattern request pattern for interception.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-RequestPattern

func (RequestPattern) MarshalEasyJSON

func (v RequestPattern) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RequestPattern) MarshalJSON

func (v RequestPattern) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RequestPattern) UnmarshalEasyJSON

func (v *RequestPattern) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RequestPattern) UnmarshalJSON

func (v *RequestPattern) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourcePriority

type ResourcePriority string

ResourcePriority loading priority of a resource request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-ResourcePriority

const (
	ResourcePriorityVeryLow  ResourcePriority = "VeryLow"
	ResourcePriorityLow      ResourcePriority = "Low"
	ResourcePriorityMedium   ResourcePriority = "Medium"
	ResourcePriorityHigh     ResourcePriority = "High"
	ResourcePriorityVeryHigh ResourcePriority = "VeryHigh"
)

ResourcePriority values.

func (ResourcePriority) MarshalEasyJSON

func (t ResourcePriority) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ResourcePriority) MarshalJSON

func (t ResourcePriority) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ResourcePriority) String

func (t ResourcePriority) String() string

String returns the ResourcePriority as string value.

func (*ResourcePriority) UnmarshalEasyJSON

func (t *ResourcePriority) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ResourcePriority) UnmarshalJSON

func (t *ResourcePriority) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ResourceTiming

type ResourceTiming struct {
	RequestTime       float64 `json:"requestTime"`       // Timing's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime.
	ProxyStart        float64 `json:"proxyStart"`        // Started resolving proxy.
	ProxyEnd          float64 `json:"proxyEnd"`          // Finished resolving proxy.
	DNSStart          float64 `json:"dnsStart"`          // Started DNS address resolve.
	DNSEnd            float64 `json:"dnsEnd"`            // Finished DNS address resolve.
	ConnectStart      float64 `json:"connectStart"`      // Started connecting to the remote host.
	ConnectEnd        float64 `json:"connectEnd"`        // Connected to the remote host.
	SslStart          float64 `json:"sslStart"`          // Started SSL handshake.
	SslEnd            float64 `json:"sslEnd"`            // Finished SSL handshake.
	WorkerStart       float64 `json:"workerStart"`       // Started running ServiceWorker.
	WorkerReady       float64 `json:"workerReady"`       // Finished Starting ServiceWorker.
	SendStart         float64 `json:"sendStart"`         // Started sending request.
	SendEnd           float64 `json:"sendEnd"`           // Finished sending request.
	PushStart         float64 `json:"pushStart"`         // Time the server started pushing request.
	PushEnd           float64 `json:"pushEnd"`           // Time the server finished pushing request.
	ReceiveHeadersEnd float64 `json:"receiveHeadersEnd"` // Finished receiving response headers.
}

ResourceTiming timing information for the request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-ResourceTiming

func (ResourceTiming) MarshalEasyJSON

func (v ResourceTiming) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ResourceTiming) MarshalJSON

func (v ResourceTiming) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ResourceTiming) UnmarshalEasyJSON

func (v *ResourceTiming) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ResourceTiming) UnmarshalJSON

func (v *ResourceTiming) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type ResourceType

type ResourceType string

ResourceType resource type as it was perceived by the rendering engine.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-ResourceType

const (
	ResourceTypeDocument           ResourceType = "Document"
	ResourceTypeStylesheet         ResourceType = "Stylesheet"
	ResourceTypeImage              ResourceType = "Image"
	ResourceTypeMedia              ResourceType = "Media"
	ResourceTypeFont               ResourceType = "Font"
	ResourceTypeScript             ResourceType = "Script"
	ResourceTypeTextTrack          ResourceType = "TextTrack"
	ResourceTypeXHR                ResourceType = "XHR"
	ResourceTypeFetch              ResourceType = "Fetch"
	ResourceTypeEventSource        ResourceType = "EventSource"
	ResourceTypeWebSocket          ResourceType = "WebSocket"
	ResourceTypeManifest           ResourceType = "Manifest"
	ResourceTypeSignedExchange     ResourceType = "SignedExchange"
	ResourceTypePing               ResourceType = "Ping"
	ResourceTypeCSPViolationReport ResourceType = "CSPViolationReport"
	ResourceTypeOther              ResourceType = "Other"
)

ResourceType values.

func (ResourceType) MarshalEasyJSON

func (t ResourceType) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (ResourceType) MarshalJSON

func (t ResourceType) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (ResourceType) String

func (t ResourceType) String() string

String returns the ResourceType as string value.

func (*ResourceType) UnmarshalEasyJSON

func (t *ResourceType) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*ResourceType) UnmarshalJSON

func (t *ResourceType) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type Response

type Response struct {
	URL                string           `json:"url"`                          // Response URL. This URL can be different from CachedResource.url in case of redirect.
	Status             int64            `json:"status"`                       // HTTP response status code.
	StatusText         string           `json:"statusText"`                   // HTTP response status text.
	Headers            Headers          `json:"headers"`                      // HTTP response headers.
	HeadersText        string           `json:"headersText,omitempty"`        // HTTP response headers text.
	MimeType           string           `json:"mimeType"`                     // Resource mimeType as determined by the browser.
	RequestHeaders     Headers          `json:"requestHeaders,omitempty"`     // Refined HTTP request headers that were actually transmitted over the network.
	RequestHeadersText string           `json:"requestHeadersText,omitempty"` // HTTP request headers text.
	ConnectionReused   bool             `json:"connectionReused"`             // Specifies whether physical connection was actually reused for this request.
	ConnectionID       float64          `json:"connectionId"`                 // Physical connection id that was actually used for this request.
	RemoteIPAddress    string           `json:"remoteIPAddress,omitempty"`    // Remote IP address.
	RemotePort         int64            `json:"remotePort,omitempty"`         // Remote port.
	FromDiskCache      bool             `json:"fromDiskCache,omitempty"`      // Specifies that the request was served from the disk cache.
	FromServiceWorker  bool             `json:"fromServiceWorker,omitempty"`  // Specifies that the request was served from the ServiceWorker.
	FromPrefetchCache  bool             `json:"fromPrefetchCache,omitempty"`  // Specifies that the request was served from the prefetch cache.
	EncodedDataLength  float64          `json:"encodedDataLength"`            // Total number of bytes received for this request so far.
	Timing             *ResourceTiming  `json:"timing,omitempty"`             // Timing information for the given request.
	Protocol           string           `json:"protocol,omitempty"`           // Protocol used to fetch this request.
	SecurityState      security.State   `json:"securityState"`                // Security state of the request resource.
	SecurityDetails    *SecurityDetails `json:"securityDetails,omitempty"`    // Security details for the request.
}

Response HTTP response data.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-Response

func (Response) MarshalEasyJSON

func (v Response) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Response) MarshalJSON

func (v Response) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Response) UnmarshalEasyJSON

func (v *Response) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Response) UnmarshalJSON

func (v *Response) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SearchInResponseBodyParams

type SearchInResponseBodyParams struct {
	RequestID     RequestID `json:"requestId"`               // Identifier of the network response to search.
	Query         string    `json:"query"`                   // String to search for.
	CaseSensitive bool      `json:"caseSensitive,omitempty"` // If true, search is case sensitive.
	IsRegex       bool      `json:"isRegex,omitempty"`       // If true, treats string parameter as regex.
}

SearchInResponseBodyParams searches for given string in response content.

func SearchInResponseBody

func SearchInResponseBody(requestID RequestID, query string) *SearchInResponseBodyParams

SearchInResponseBody searches for given string in response content.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-searchInResponseBody

parameters:

requestID - Identifier of the network response to search.
query - String to search for.

func (*SearchInResponseBodyParams) Do

Do executes Network.searchInResponseBody against the provided context.

returns:

result - List of search matches.

func (SearchInResponseBodyParams) MarshalEasyJSON

func (v SearchInResponseBodyParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SearchInResponseBodyParams) MarshalJSON

func (v SearchInResponseBodyParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SearchInResponseBodyParams) UnmarshalEasyJSON

func (v *SearchInResponseBodyParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SearchInResponseBodyParams) UnmarshalJSON

func (v *SearchInResponseBodyParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SearchInResponseBodyParams) WithCaseSensitive

func (p SearchInResponseBodyParams) WithCaseSensitive(caseSensitive bool) *SearchInResponseBodyParams

WithCaseSensitive if true, search is case sensitive.

func (SearchInResponseBodyParams) WithIsRegex

WithIsRegex if true, treats string parameter as regex.

type SearchInResponseBodyReturns

type SearchInResponseBodyReturns struct {
	Result []*debugger.SearchMatch `json:"result,omitempty"` // List of search matches.
}

SearchInResponseBodyReturns return values.

func (SearchInResponseBodyReturns) MarshalEasyJSON

func (v SearchInResponseBodyReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SearchInResponseBodyReturns) MarshalJSON

func (v SearchInResponseBodyReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SearchInResponseBodyReturns) UnmarshalEasyJSON

func (v *SearchInResponseBodyReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SearchInResponseBodyReturns) UnmarshalJSON

func (v *SearchInResponseBodyReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SecurityDetails

type SecurityDetails struct {
	Protocol                          string                            `json:"protocol"`                          // Protocol name (e.g. "TLS 1.2" or "QUIC").
	KeyExchange                       string                            `json:"keyExchange"`                       // Key Exchange used by the connection, or the empty string if not applicable.
	KeyExchangeGroup                  string                            `json:"keyExchangeGroup,omitempty"`        // (EC)DH group used by the connection, if applicable.
	Cipher                            string                            `json:"cipher"`                            // Cipher name.
	Mac                               string                            `json:"mac,omitempty"`                     // TLS MAC. Note that AEAD ciphers do not have separate MACs.
	CertificateID                     security.CertificateID            `json:"certificateId"`                     // Certificate ID value.
	SubjectName                       string                            `json:"subjectName"`                       // Certificate subject name.
	SanList                           []string                          `json:"sanList"`                           // Subject Alternative Name (SAN) DNS names and IP addresses.
	Issuer                            string                            `json:"issuer"`                            // Name of the issuing CA.
	ValidFrom                         *cdp.TimeSinceEpoch               `json:"validFrom"`                         // Certificate valid from date.
	ValidTo                           *cdp.TimeSinceEpoch               `json:"validTo"`                           // Certificate valid to (expiration) date
	SignedCertificateTimestampList    []*SignedCertificateTimestamp     `json:"signedCertificateTimestampList"`    // List of signed certificate timestamps (SCTs).
	CertificateTransparencyCompliance CertificateTransparencyCompliance `json:"certificateTransparencyCompliance"` // Whether the request complied with Certificate Transparency policy
}

SecurityDetails security details about a request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SecurityDetails

func (SecurityDetails) MarshalEasyJSON

func (v SecurityDetails) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SecurityDetails) MarshalJSON

func (v SecurityDetails) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SecurityDetails) UnmarshalEasyJSON

func (v *SecurityDetails) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SecurityDetails) UnmarshalJSON

func (v *SecurityDetails) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBlockedURLSParams

type SetBlockedURLSParams struct {
	Urls []string `json:"urls"` // URL patterns to block. Wildcards ('*') are allowed.
}

SetBlockedURLSParams blocks URLs from loading.

func SetBlockedURLS

func SetBlockedURLS(urls []string) *SetBlockedURLSParams

SetBlockedURLS blocks URLs from loading.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setBlockedURLs

parameters:

urls - URL patterns to block. Wildcards ('*') are allowed.

func (*SetBlockedURLSParams) Do

func (p *SetBlockedURLSParams) Do(ctx context.Context) (err error)

Do executes Network.setBlockedURLs against the provided context.

func (SetBlockedURLSParams) MarshalEasyJSON

func (v SetBlockedURLSParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBlockedURLSParams) MarshalJSON

func (v SetBlockedURLSParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBlockedURLSParams) UnmarshalEasyJSON

func (v *SetBlockedURLSParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBlockedURLSParams) UnmarshalJSON

func (v *SetBlockedURLSParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetBypassServiceWorkerParams

type SetBypassServiceWorkerParams struct {
	Bypass bool `json:"bypass"` // Bypass service worker and load from network.
}

SetBypassServiceWorkerParams toggles ignoring of service worker for each request.

func SetBypassServiceWorker

func SetBypassServiceWorker(bypass bool) *SetBypassServiceWorkerParams

SetBypassServiceWorker toggles ignoring of service worker for each request.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setBypassServiceWorker

parameters:

bypass - Bypass service worker and load from network.

func (*SetBypassServiceWorkerParams) Do

Do executes Network.setBypassServiceWorker against the provided context.

func (SetBypassServiceWorkerParams) MarshalEasyJSON

func (v SetBypassServiceWorkerParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetBypassServiceWorkerParams) MarshalJSON

func (v SetBypassServiceWorkerParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetBypassServiceWorkerParams) UnmarshalEasyJSON

func (v *SetBypassServiceWorkerParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetBypassServiceWorkerParams) UnmarshalJSON

func (v *SetBypassServiceWorkerParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetCacheDisabledParams

type SetCacheDisabledParams struct {
	CacheDisabled bool `json:"cacheDisabled"` // Cache disabled state.
}

SetCacheDisabledParams toggles ignoring cache for each request. If true, cache will not be used.

func SetCacheDisabled

func SetCacheDisabled(cacheDisabled bool) *SetCacheDisabledParams

SetCacheDisabled toggles ignoring cache for each request. If true, cache will not be used.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setCacheDisabled

parameters:

cacheDisabled - Cache disabled state.

func (*SetCacheDisabledParams) Do

func (p *SetCacheDisabledParams) Do(ctx context.Context) (err error)

Do executes Network.setCacheDisabled against the provided context.

func (SetCacheDisabledParams) MarshalEasyJSON

func (v SetCacheDisabledParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetCacheDisabledParams) MarshalJSON

func (v SetCacheDisabledParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetCacheDisabledParams) UnmarshalEasyJSON

func (v *SetCacheDisabledParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetCacheDisabledParams) UnmarshalJSON

func (v *SetCacheDisabledParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetCookieBlockedReason

type SetCookieBlockedReason string

SetCookieBlockedReason types of reasons why a cookie may not be stored from a response.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SetCookieBlockedReason

const (
	SetCookieBlockedReasonSecureOnly                      SetCookieBlockedReason = "SecureOnly"
	SetCookieBlockedReasonSameSiteStrict                  SetCookieBlockedReason = "SameSiteStrict"
	SetCookieBlockedReasonSameSiteLax                     SetCookieBlockedReason = "SameSiteLax"
	SetCookieBlockedReasonSameSiteUnspecifiedTreatedAsLax SetCookieBlockedReason = "SameSiteUnspecifiedTreatedAsLax"
	SetCookieBlockedReasonSameSiteNoneInsecure            SetCookieBlockedReason = "SameSiteNoneInsecure"
	SetCookieBlockedReasonUserPreferences                 SetCookieBlockedReason = "UserPreferences"
	SetCookieBlockedReasonSyntaxError                     SetCookieBlockedReason = "SyntaxError"
	SetCookieBlockedReasonSchemeNotSupported              SetCookieBlockedReason = "SchemeNotSupported"
	SetCookieBlockedReasonOverwriteSecure                 SetCookieBlockedReason = "OverwriteSecure"
	SetCookieBlockedReasonInvalidDomain                   SetCookieBlockedReason = "InvalidDomain"
	SetCookieBlockedReasonInvalidPrefix                   SetCookieBlockedReason = "InvalidPrefix"
	SetCookieBlockedReasonUnknownError                    SetCookieBlockedReason = "UnknownError"
)

SetCookieBlockedReason values.

func (SetCookieBlockedReason) MarshalEasyJSON

func (t SetCookieBlockedReason) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (SetCookieBlockedReason) MarshalJSON

func (t SetCookieBlockedReason) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (SetCookieBlockedReason) String

func (t SetCookieBlockedReason) String() string

String returns the SetCookieBlockedReason as string value.

func (*SetCookieBlockedReason) UnmarshalEasyJSON

func (t *SetCookieBlockedReason) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*SetCookieBlockedReason) UnmarshalJSON

func (t *SetCookieBlockedReason) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type SetCookieParams

type SetCookieParams struct {
	Name     string              `json:"name"`               // Cookie name.
	Value    string              `json:"value"`              // Cookie value.
	URL      string              `json:"url,omitempty"`      // The request-URI to associate with the setting of the cookie. This value can affect the default domain and path values of the created cookie.
	Domain   string              `json:"domain,omitempty"`   // Cookie domain.
	Path     string              `json:"path,omitempty"`     // Cookie path.
	Secure   bool                `json:"secure,omitempty"`   // True if cookie is secure.
	HTTPOnly bool                `json:"httpOnly,omitempty"` // True if cookie is http-only.
	SameSite CookieSameSite      `json:"sameSite,omitempty"` // Cookie SameSite type.
	Expires  *cdp.TimeSinceEpoch `json:"expires,omitempty"`  // Cookie expiration date, session cookie if not set
}

SetCookieParams sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.

func SetCookie

func SetCookie(name string, value string) *SetCookieParams

SetCookie sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setCookie

parameters:

name - Cookie name.
value - Cookie value.

func (*SetCookieParams) Do

func (p *SetCookieParams) Do(ctx context.Context) (success bool, err error)

Do executes Network.setCookie against the provided context.

returns:

success - True if successfully set cookie.

func (SetCookieParams) MarshalEasyJSON

func (v SetCookieParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetCookieParams) MarshalJSON

func (v SetCookieParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetCookieParams) UnmarshalEasyJSON

func (v *SetCookieParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetCookieParams) UnmarshalJSON

func (v *SetCookieParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

func (SetCookieParams) WithDomain

func (p SetCookieParams) WithDomain(domain string) *SetCookieParams

WithDomain cookie domain.

func (SetCookieParams) WithExpires

func (p SetCookieParams) WithExpires(expires *cdp.TimeSinceEpoch) *SetCookieParams

WithExpires cookie expiration date, session cookie if not set.

func (SetCookieParams) WithHTTPOnly

func (p SetCookieParams) WithHTTPOnly(httpOnly bool) *SetCookieParams

WithHTTPOnly true if cookie is http-only.

func (SetCookieParams) WithPath

func (p SetCookieParams) WithPath(path string) *SetCookieParams

WithPath cookie path.

func (SetCookieParams) WithSameSite

func (p SetCookieParams) WithSameSite(sameSite CookieSameSite) *SetCookieParams

WithSameSite cookie SameSite type.

func (SetCookieParams) WithSecure

func (p SetCookieParams) WithSecure(secure bool) *SetCookieParams

WithSecure true if cookie is secure.

func (SetCookieParams) WithURL

func (p SetCookieParams) WithURL(url string) *SetCookieParams

WithURL the request-URI to associate with the setting of the cookie. This value can affect the default domain and path values of the created cookie.

type SetCookieReturns

type SetCookieReturns struct {
	Success bool `json:"success,omitempty"` // True if successfully set cookie.
}

SetCookieReturns return values.

func (SetCookieReturns) MarshalEasyJSON

func (v SetCookieReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetCookieReturns) MarshalJSON

func (v SetCookieReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetCookieReturns) UnmarshalEasyJSON

func (v *SetCookieReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetCookieReturns) UnmarshalJSON

func (v *SetCookieReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetCookiesParams

type SetCookiesParams struct {
	Cookies []*CookieParam `json:"cookies"` // Cookies to be set.
}

SetCookiesParams sets given cookies.

func SetCookies

func SetCookies(cookies []*CookieParam) *SetCookiesParams

SetCookies sets given cookies.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setCookies

parameters:

cookies - Cookies to be set.

func (*SetCookiesParams) Do

func (p *SetCookiesParams) Do(ctx context.Context) (err error)

Do executes Network.setCookies against the provided context.

func (SetCookiesParams) MarshalEasyJSON

func (v SetCookiesParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetCookiesParams) MarshalJSON

func (v SetCookiesParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetCookiesParams) UnmarshalEasyJSON

func (v *SetCookiesParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetCookiesParams) UnmarshalJSON

func (v *SetCookiesParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetDataSizeLimitsForTestParams

type SetDataSizeLimitsForTestParams struct {
	MaxTotalSize    int64 `json:"maxTotalSize"`    // Maximum total buffer size.
	MaxResourceSize int64 `json:"maxResourceSize"` // Maximum per-resource size.
}

SetDataSizeLimitsForTestParams for testing.

func SetDataSizeLimitsForTest

func SetDataSizeLimitsForTest(maxTotalSize int64, maxResourceSize int64) *SetDataSizeLimitsForTestParams

SetDataSizeLimitsForTest for testing.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setDataSizeLimitsForTest

parameters:

maxTotalSize - Maximum total buffer size.
maxResourceSize - Maximum per-resource size.

func (*SetDataSizeLimitsForTestParams) Do

Do executes Network.setDataSizeLimitsForTest against the provided context.

func (SetDataSizeLimitsForTestParams) MarshalEasyJSON

func (v SetDataSizeLimitsForTestParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetDataSizeLimitsForTestParams) MarshalJSON

func (v SetDataSizeLimitsForTestParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetDataSizeLimitsForTestParams) UnmarshalEasyJSON

func (v *SetDataSizeLimitsForTestParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetDataSizeLimitsForTestParams) UnmarshalJSON

func (v *SetDataSizeLimitsForTestParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetExtraHTTPHeadersParams

type SetExtraHTTPHeadersParams struct {
	Headers Headers `json:"headers"` // Map with extra HTTP headers.
}

SetExtraHTTPHeadersParams specifies whether to always send extra HTTP headers with the requests from this page.

func SetExtraHTTPHeaders

func SetExtraHTTPHeaders(headers Headers) *SetExtraHTTPHeadersParams

SetExtraHTTPHeaders specifies whether to always send extra HTTP headers with the requests from this page.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-setExtraHTTPHeaders

parameters:

headers - Map with extra HTTP headers.

func (*SetExtraHTTPHeadersParams) Do

Do executes Network.setExtraHTTPHeaders against the provided context.

func (SetExtraHTTPHeadersParams) MarshalEasyJSON

func (v SetExtraHTTPHeadersParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetExtraHTTPHeadersParams) MarshalJSON

func (v SetExtraHTTPHeadersParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetExtraHTTPHeadersParams) UnmarshalEasyJSON

func (v *SetExtraHTTPHeadersParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetExtraHTTPHeadersParams) UnmarshalJSON

func (v *SetExtraHTTPHeadersParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SignedCertificateTimestamp

type SignedCertificateTimestamp struct {
	Status             string              `json:"status"`             // Validation status.
	Origin             string              `json:"origin"`             // Origin.
	LogDescription     string              `json:"logDescription"`     // Log name / description.
	LogID              string              `json:"logId"`              // Log ID.
	Timestamp          *cdp.TimeSinceEpoch `json:"timestamp"`          // Issuance date.
	HashAlgorithm      string              `json:"hashAlgorithm"`      // Hash algorithm.
	SignatureAlgorithm string              `json:"signatureAlgorithm"` // Signature algorithm.
	SignatureData      string              `json:"signatureData"`      // Signature data.
}

SignedCertificateTimestamp details of a signed certificate timestamp (SCT).

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SignedCertificateTimestamp

func (SignedCertificateTimestamp) MarshalEasyJSON

func (v SignedCertificateTimestamp) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SignedCertificateTimestamp) MarshalJSON

func (v SignedCertificateTimestamp) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SignedCertificateTimestamp) UnmarshalEasyJSON

func (v *SignedCertificateTimestamp) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SignedCertificateTimestamp) UnmarshalJSON

func (v *SignedCertificateTimestamp) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SignedExchangeError

type SignedExchangeError struct {
	Message        string                   `json:"message"`                  // Error message.
	SignatureIndex int64                    `json:"signatureIndex,omitempty"` // The index of the signature which caused the error.
	ErrorField     SignedExchangeErrorField `json:"errorField,omitempty"`     // The field which caused the error.
}

SignedExchangeError information about a signed exchange response.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SignedExchangeError

func (SignedExchangeError) MarshalEasyJSON

func (v SignedExchangeError) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SignedExchangeError) MarshalJSON

func (v SignedExchangeError) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SignedExchangeError) UnmarshalEasyJSON

func (v *SignedExchangeError) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SignedExchangeError) UnmarshalJSON

func (v *SignedExchangeError) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SignedExchangeErrorField

type SignedExchangeErrorField string

SignedExchangeErrorField field type for a signed exchange related error.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SignedExchangeErrorField

const (
	SignedExchangeErrorFieldSignatureSig         SignedExchangeErrorField = "signatureSig"
	SignedExchangeErrorFieldSignatureIntegrity   SignedExchangeErrorField = "signatureIntegrity"
	SignedExchangeErrorFieldSignatureCertURL     SignedExchangeErrorField = "signatureCertUrl"
	SignedExchangeErrorFieldSignatureCertSha256  SignedExchangeErrorField = "signatureCertSha256"
	SignedExchangeErrorFieldSignatureValidityURL SignedExchangeErrorField = "signatureValidityUrl"
	SignedExchangeErrorFieldSignatureTimestamps  SignedExchangeErrorField = "signatureTimestamps"
)

SignedExchangeErrorField values.

func (SignedExchangeErrorField) MarshalEasyJSON

func (t SignedExchangeErrorField) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (SignedExchangeErrorField) MarshalJSON

func (t SignedExchangeErrorField) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (SignedExchangeErrorField) String

func (t SignedExchangeErrorField) String() string

String returns the SignedExchangeErrorField as string value.

func (*SignedExchangeErrorField) UnmarshalEasyJSON

func (t *SignedExchangeErrorField) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*SignedExchangeErrorField) UnmarshalJSON

func (t *SignedExchangeErrorField) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type SignedExchangeHeader

type SignedExchangeHeader struct {
	RequestURL      string                     `json:"requestUrl"`      // Signed exchange request URL.
	ResponseCode    int64                      `json:"responseCode"`    // Signed exchange response code.
	ResponseHeaders Headers                    `json:"responseHeaders"` // Signed exchange response headers.
	Signatures      []*SignedExchangeSignature `json:"signatures"`      // Signed exchange response signature.
	HeaderIntegrity string                     `json:"headerIntegrity"` // Signed exchange header integrity hash in the form of "sha256-<base64-hash-value>".
}

SignedExchangeHeader information about a signed exchange header. https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-impl.html#cbor-representation.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SignedExchangeHeader

func (SignedExchangeHeader) MarshalEasyJSON

func (v SignedExchangeHeader) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SignedExchangeHeader) MarshalJSON

func (v SignedExchangeHeader) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SignedExchangeHeader) UnmarshalEasyJSON

func (v *SignedExchangeHeader) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SignedExchangeHeader) UnmarshalJSON

func (v *SignedExchangeHeader) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SignedExchangeInfo

type SignedExchangeInfo struct {
	OuterResponse   *Response              `json:"outerResponse"`             // The outer response of signed HTTP exchange which was received from network.
	Header          *SignedExchangeHeader  `json:"header,omitempty"`          // Information about the signed exchange header.
	SecurityDetails *SecurityDetails       `json:"securityDetails,omitempty"` // Security details for the signed exchange header.
	Errors          []*SignedExchangeError `json:"errors,omitempty"`          // Errors occurred while handling the signed exchagne.
}

SignedExchangeInfo information about a signed exchange response.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SignedExchangeInfo

func (SignedExchangeInfo) MarshalEasyJSON

func (v SignedExchangeInfo) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SignedExchangeInfo) MarshalJSON

func (v SignedExchangeInfo) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SignedExchangeInfo) UnmarshalEasyJSON

func (v *SignedExchangeInfo) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SignedExchangeInfo) UnmarshalJSON

func (v *SignedExchangeInfo) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SignedExchangeSignature

type SignedExchangeSignature struct {
	Label        string   `json:"label"`                  // Signed exchange signature label.
	Signature    string   `json:"signature"`              // The hex string of signed exchange signature.
	Integrity    string   `json:"integrity"`              // Signed exchange signature integrity.
	CertURL      string   `json:"certUrl,omitempty"`      // Signed exchange signature cert Url.
	CertSha256   string   `json:"certSha256,omitempty"`   // The hex string of signed exchange signature cert sha256.
	ValidityURL  string   `json:"validityUrl"`            // Signed exchange signature validity Url.
	Date         int64    `json:"date"`                   // Signed exchange signature date.
	Expires      int64    `json:"expires"`                // Signed exchange signature expires.
	Certificates []string `json:"certificates,omitempty"` // The encoded certificates.
}

SignedExchangeSignature information about a signed exchange signature. https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-impl.html#rfc.section.3.1.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-SignedExchangeSignature

func (SignedExchangeSignature) MarshalEasyJSON

func (v SignedExchangeSignature) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SignedExchangeSignature) MarshalJSON

func (v SignedExchangeSignature) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SignedExchangeSignature) UnmarshalEasyJSON

func (v *SignedExchangeSignature) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SignedExchangeSignature) UnmarshalJSON

func (v *SignedExchangeSignature) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type TakeResponseBodyForInterceptionAsStreamParams

type TakeResponseBodyForInterceptionAsStreamParams struct {
	InterceptionID InterceptionID `json:"interceptionId"`
}

TakeResponseBodyForInterceptionAsStreamParams 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.

func TakeResponseBodyForInterceptionAsStream

func TakeResponseBodyForInterceptionAsStream(interceptionID InterceptionID) *TakeResponseBodyForInterceptionAsStreamParams

TakeResponseBodyForInterceptionAsStream 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.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#method-takeResponseBodyForInterceptionAsStream

parameters:

interceptionID

func (*TakeResponseBodyForInterceptionAsStreamParams) Do

Do executes Network.takeResponseBodyForInterceptionAsStream against the provided context.

returns:

stream

func (TakeResponseBodyForInterceptionAsStreamParams) MarshalEasyJSON

MarshalEasyJSON supports easyjson.Marshaler interface

func (TakeResponseBodyForInterceptionAsStreamParams) MarshalJSON

MarshalJSON supports json.Marshaler interface

func (*TakeResponseBodyForInterceptionAsStreamParams) UnmarshalEasyJSON

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*TakeResponseBodyForInterceptionAsStreamParams) UnmarshalJSON

func (v *TakeResponseBodyForInterceptionAsStreamParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type TakeResponseBodyForInterceptionAsStreamReturns

type TakeResponseBodyForInterceptionAsStreamReturns struct {
	Stream io.StreamHandle `json:"stream,omitempty"`
}

TakeResponseBodyForInterceptionAsStreamReturns return values.

func (TakeResponseBodyForInterceptionAsStreamReturns) MarshalEasyJSON

MarshalEasyJSON supports easyjson.Marshaler interface

func (TakeResponseBodyForInterceptionAsStreamReturns) MarshalJSON

MarshalJSON supports json.Marshaler interface

func (*TakeResponseBodyForInterceptionAsStreamReturns) UnmarshalEasyJSON

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*TakeResponseBodyForInterceptionAsStreamReturns) UnmarshalJSON

UnmarshalJSON supports json.Unmarshaler interface

type WebSocketFrame

type WebSocketFrame struct {
	Opcode      float64 `json:"opcode"`      // WebSocket message opcode.
	Mask        bool    `json:"mask"`        // WebSocket message mask.
	PayloadData string  `json:"payloadData"` // WebSocket message payload data. If the opcode is 1, this is a text message and payloadData is a UTF-8 string. If the opcode isn't 1, then payloadData is a base64 encoded string representing binary data.
}

WebSocketFrame webSocket message data. This represents an entire WebSocket message, not just a fragmented frame as the name suggests.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-WebSocketFrame

func (WebSocketFrame) MarshalEasyJSON

func (v WebSocketFrame) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (WebSocketFrame) MarshalJSON

func (v WebSocketFrame) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*WebSocketFrame) UnmarshalEasyJSON

func (v *WebSocketFrame) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*WebSocketFrame) UnmarshalJSON

func (v *WebSocketFrame) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type WebSocketRequest

type WebSocketRequest struct {
	Headers Headers `json:"headers"` // HTTP request headers.
}

WebSocketRequest webSocket request data.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-WebSocketRequest

func (WebSocketRequest) MarshalEasyJSON

func (v WebSocketRequest) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (WebSocketRequest) MarshalJSON

func (v WebSocketRequest) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*WebSocketRequest) UnmarshalEasyJSON

func (v *WebSocketRequest) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*WebSocketRequest) UnmarshalJSON

func (v *WebSocketRequest) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type WebSocketResponse

type WebSocketResponse struct {
	Status             int64   `json:"status"`                       // HTTP response status code.
	StatusText         string  `json:"statusText"`                   // HTTP response status text.
	Headers            Headers `json:"headers"`                      // HTTP response headers.
	HeadersText        string  `json:"headersText,omitempty"`        // HTTP response headers text.
	RequestHeaders     Headers `json:"requestHeaders,omitempty"`     // HTTP request headers.
	RequestHeadersText string  `json:"requestHeadersText,omitempty"` // HTTP request headers text.
}

WebSocketResponse webSocket response data.

See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-WebSocketResponse

func (WebSocketResponse) MarshalEasyJSON

func (v WebSocketResponse) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (WebSocketResponse) MarshalJSON

func (v WebSocketResponse) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*WebSocketResponse) UnmarshalEasyJSON

func (v *WebSocketResponse) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*WebSocketResponse) UnmarshalJSON

func (v *WebSocketResponse) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL