Documentation ¶
Index ¶
- Constants
- Variables
- func Execute(ctx context.Context, method string, params easyjson.Marshaler, ...) error
- func WithExecutor(parent context.Context, executor Executor) context.Context
- type AdFrameExplanation
- type AdFrameStatus
- type AdFrameType
- type BackendNode
- type BackendNodeID
- type BrowserContextID
- type CompatibilityMode
- type CrossOriginIsolatedContextType
- func (t CrossOriginIsolatedContextType) MarshalEasyJSON(out *jwriter.Writer)
- func (t CrossOriginIsolatedContextType) MarshalJSON() ([]byte, error)
- func (t CrossOriginIsolatedContextType) String() string
- func (t *CrossOriginIsolatedContextType) UnmarshalEasyJSON(in *jlexer.Lexer)
- func (t *CrossOriginIsolatedContextType) UnmarshalJSON(buf []byte) error
- type ErrUnknownCommandOrEvent
- type Error
- type Executor
- type Frame
- type FrameID
- type FrameState
- type GatedAPIFeatures
- type LoaderID
- type MonotonicTime
- type Node
- func (n *Node) Attribute(name string) (string, bool)
- func (n *Node) AttributeValue(name string) string
- func (n *Node) Dump(prefix, indent string, nodeIDs bool) string
- func (n *Node) FullXPath() string
- func (n *Node) FullXPathByID() string
- func (v Node) MarshalEasyJSON(w *jwriter.Writer)
- func (v Node) MarshalJSON() ([]byte, error)
- func (n *Node) PartialXPath() string
- func (n *Node) PartialXPathByID() string
- func (v *Node) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *Node) UnmarshalJSON(data []byte) error
- func (n *Node) WriteTo(w io.Writer, prefix, indent string, nodeIDs bool) (int, error)
- type NodeID
- type NodeState
- type NodeType
- type OriginTrial
- type OriginTrialStatus
- type OriginTrialToken
- type OriginTrialTokenStatus
- func (t OriginTrialTokenStatus) MarshalEasyJSON(out *jwriter.Writer)
- func (t OriginTrialTokenStatus) MarshalJSON() ([]byte, error)
- func (t OriginTrialTokenStatus) String() string
- func (t *OriginTrialTokenStatus) UnmarshalEasyJSON(in *jlexer.Lexer)
- func (t *OriginTrialTokenStatus) UnmarshalJSON(buf []byte) error
- type OriginTrialTokenWithStatus
- type OriginTrialUsageRestriction
- func (t OriginTrialUsageRestriction) MarshalEasyJSON(out *jwriter.Writer)
- func (t OriginTrialUsageRestriction) MarshalJSON() ([]byte, error)
- func (t OriginTrialUsageRestriction) String() string
- func (t *OriginTrialUsageRestriction) UnmarshalEasyJSON(in *jlexer.Lexer)
- func (t *OriginTrialUsageRestriction) UnmarshalJSON(buf []byte) error
- type PseudoType
- type RGBA
- type SecureContextType
- type ShadowRootType
- type TimeSinceEpoch
- type TimeSinceEpochMilli
Constants ¶
const EmptyFrameID = FrameID("")
EmptyFrameID is the "non-existent" frame id.
const EmptyNodeID = NodeID(0)
EmptyNodeID is the "non-existent" node id.
Variables ¶
var MonotonicTimeEpoch *time.Time
MonotonicTimeEpoch is the MonotonicTime time epoch.
Functions ¶
Types ¶
type AdFrameExplanation ¶
type AdFrameExplanation string
AdFrameExplanation [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-AdFrameExplanation
const ( AdFrameExplanationParentIsAd AdFrameExplanation = "ParentIsAd" AdFrameExplanationCreatedByAdScript AdFrameExplanation = "CreatedByAdScript" AdFrameExplanationMatchedBlockingRule AdFrameExplanation = "MatchedBlockingRule" )
AdFrameExplanation values.
func (AdFrameExplanation) MarshalEasyJSON ¶
func (t AdFrameExplanation) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (AdFrameExplanation) MarshalJSON ¶
func (t AdFrameExplanation) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (AdFrameExplanation) String ¶
func (t AdFrameExplanation) String() string
String returns the AdFrameExplanation as string value.
func (*AdFrameExplanation) UnmarshalEasyJSON ¶
func (t *AdFrameExplanation) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*AdFrameExplanation) UnmarshalJSON ¶
func (t *AdFrameExplanation) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type AdFrameStatus ¶
type AdFrameStatus struct { AdFrameType AdFrameType `json:"adFrameType"` Explanations []AdFrameExplanation `json:"explanations,omitempty"` }
AdFrameStatus indicates whether a frame has been identified as an ad and why.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-AdFrameStatus
func (AdFrameStatus) MarshalEasyJSON ¶
func (v AdFrameStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (AdFrameStatus) MarshalJSON ¶
func (v AdFrameStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*AdFrameStatus) UnmarshalEasyJSON ¶
func (v *AdFrameStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*AdFrameStatus) UnmarshalJSON ¶
func (v *AdFrameStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type AdFrameType ¶
type AdFrameType string
AdFrameType indicates whether a frame has been identified as an ad.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-AdFrameType
const ( AdFrameTypeNone AdFrameType = "none" AdFrameTypeChild AdFrameType = "child" AdFrameTypeRoot AdFrameType = "root" )
AdFrameType values.
func (AdFrameType) MarshalEasyJSON ¶
func (t AdFrameType) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (AdFrameType) MarshalJSON ¶
func (t AdFrameType) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (AdFrameType) String ¶
func (t AdFrameType) String() string
String returns the AdFrameType as string value.
func (*AdFrameType) UnmarshalEasyJSON ¶
func (t *AdFrameType) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*AdFrameType) UnmarshalJSON ¶
func (t *AdFrameType) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type BackendNode ¶
type BackendNode struct { NodeType NodeType `json:"nodeType"` // Node's nodeType. NodeName string `json:"nodeName"` // Node's nodeName. BackendNodeID BackendNodeID `json:"backendNodeId"` }
BackendNode backend node with a friendly name.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-BackendNode
func (BackendNode) MarshalEasyJSON ¶
func (v BackendNode) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (BackendNode) MarshalJSON ¶
func (v BackendNode) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*BackendNode) UnmarshalEasyJSON ¶
func (v *BackendNode) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*BackendNode) UnmarshalJSON ¶
func (v *BackendNode) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type BackendNodeID ¶
type BackendNodeID int64
BackendNodeID unique DOM node identifier used to reference a node that may not have been pushed to the front-end.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-BackendNodeId
func (BackendNodeID) Int64 ¶
func (t BackendNodeID) Int64() int64
Int64 returns the BackendNodeID as int64 value.
func (*BackendNodeID) UnmarshalEasyJSON ¶
func (t *BackendNodeID) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*BackendNodeID) UnmarshalJSON ¶
func (t *BackendNodeID) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type BrowserContextID ¶
type BrowserContextID string
BrowserContextID [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Browser#type-BrowserContextID
func (BrowserContextID) String ¶
func (t BrowserContextID) String() string
String returns the BrowserContextID as string value.
type CompatibilityMode ¶
type CompatibilityMode string
CompatibilityMode document compatibility mode.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-CompatibilityMode
const ( CompatibilityModeQuirksMode CompatibilityMode = "QuirksMode" CompatibilityModeLimitedQuirksMode CompatibilityMode = "LimitedQuirksMode" CompatibilityModeNoQuirksMode CompatibilityMode = "NoQuirksMode" )
CompatibilityMode values.
func (CompatibilityMode) MarshalEasyJSON ¶
func (t CompatibilityMode) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (CompatibilityMode) MarshalJSON ¶
func (t CompatibilityMode) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (CompatibilityMode) String ¶
func (t CompatibilityMode) String() string
String returns the CompatibilityMode as string value.
func (*CompatibilityMode) UnmarshalEasyJSON ¶
func (t *CompatibilityMode) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*CompatibilityMode) UnmarshalJSON ¶
func (t *CompatibilityMode) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type CrossOriginIsolatedContextType ¶
type CrossOriginIsolatedContextType string
CrossOriginIsolatedContextType indicates whether the frame is cross-origin isolated and why it is the case.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-CrossOriginIsolatedContextType
const ( CrossOriginIsolatedContextTypeIsolated CrossOriginIsolatedContextType = "Isolated" CrossOriginIsolatedContextTypeNotIsolated CrossOriginIsolatedContextType = "NotIsolated" CrossOriginIsolatedContextTypeNotIsolatedFeatureDisabled CrossOriginIsolatedContextType = "NotIsolatedFeatureDisabled" )
CrossOriginIsolatedContextType values.
func (CrossOriginIsolatedContextType) MarshalEasyJSON ¶
func (t CrossOriginIsolatedContextType) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (CrossOriginIsolatedContextType) MarshalJSON ¶
func (t CrossOriginIsolatedContextType) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (CrossOriginIsolatedContextType) String ¶
func (t CrossOriginIsolatedContextType) String() string
String returns the CrossOriginIsolatedContextType as string value.
func (*CrossOriginIsolatedContextType) UnmarshalEasyJSON ¶
func (t *CrossOriginIsolatedContextType) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*CrossOriginIsolatedContextType) UnmarshalJSON ¶
func (t *CrossOriginIsolatedContextType) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type ErrUnknownCommandOrEvent ¶
type ErrUnknownCommandOrEvent string
ErrUnknownCommandOrEvent is an unknown command or event error.
func (ErrUnknownCommandOrEvent) Error ¶
func (err ErrUnknownCommandOrEvent) Error() string
Error satisfies the error interface.
type Error ¶
type Error string
Error is a error.
type Executor ¶
type Executor interface { // Execute executes the command. Execute(context.Context, string, easyjson.Marshaler, easyjson.Unmarshaler) error }
Executor is the common interface for executing a command.
func ExecutorFromContext ¶
ExecutorFromContext returns the message executor for the context.
type Frame ¶
type Frame struct { ID FrameID `json:"id"` // Frame unique identifier. ParentID FrameID `json:"parentId,omitempty"` // Parent frame identifier. LoaderID LoaderID `json:"loaderId"` // Identifier of the loader associated with this frame. Name string `json:"name,omitempty"` // Frame's name as specified in the tag. URL string `json:"url"` // Frame document's URL without fragment. URLFragment string `json:"urlFragment,omitempty"` // Frame document's URL fragment including the '#'. DomainAndRegistry string `json:"domainAndRegistry"` // Frame document's registered domain, taking the public suffixes list into account. Extracted from the Frame's url. Example URLs: http://www.google.com/file.html -> "google.com" http://a.b.co.uk/file.html -> "b.co.uk" SecurityOrigin string `json:"securityOrigin"` // Frame document's security origin. MimeType string `json:"mimeType"` // Frame document's mimeType as determined by the browser. UnreachableURL string `json:"unreachableUrl,omitempty"` // If the frame failed to load, this contains the URL that could not be loaded. Note that unlike url above, this URL may contain a fragment. AdFrameStatus *AdFrameStatus `json:"adFrameStatus,omitempty"` // Indicates whether this frame was tagged as an ad and why. SecureContextType SecureContextType `json:"secureContextType"` // Indicates whether the main document is a secure context and explains why that is the case. CrossOriginIsolatedContextType CrossOriginIsolatedContextType `json:"crossOriginIsolatedContextType"` // Indicates whether this is a cross origin isolated context. GatedAPIFeatures []GatedAPIFeatures `json:"gatedAPIFeatures"` // Indicated which gated APIs / features are available. State FrameState `json:"-"` // Frame state. Root *Node `json:"-"` // Frame document root. Nodes map[NodeID]*Node `json:"-"` // Frame nodes. sync.RWMutex `json:"-"` // Read write mutex. }
Frame information about the Frame on the page.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-Frame
func (Frame) MarshalEasyJSON ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (Frame) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*Frame) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*Frame) UnmarshalJSON ¶
UnmarshalJSON supports json.Unmarshaler interface
type FrameID ¶
type FrameID string
FrameID unique frame identifier.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-FrameId
func (*FrameID) UnmarshalEasyJSON ¶
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*FrameID) UnmarshalJSON ¶
UnmarshalJSON satisfies json.Unmarshaler.
type FrameState ¶
type FrameState uint16
FrameState is the state of a Frame.
const ( FrameDOMContentEventFired FrameState = 1 << (15 - iota) FrameLoadEventFired FrameAttached FrameLoading )
FrameState enum values.
func (FrameState) String ¶
func (fs FrameState) String() string
String satisfies stringer interface.
type GatedAPIFeatures ¶
type GatedAPIFeatures string
GatedAPIFeatures [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-GatedAPIFeatures
const ( GatedAPIFeaturesPerformanceMeasureMemory GatedAPIFeatures = "PerformanceMeasureMemory" GatedAPIFeaturesPerformanceProfile GatedAPIFeatures = "PerformanceProfile" )
GatedAPIFeatures values.
func (GatedAPIFeatures) MarshalEasyJSON ¶
func (t GatedAPIFeatures) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (GatedAPIFeatures) MarshalJSON ¶
func (t GatedAPIFeatures) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (GatedAPIFeatures) String ¶
func (t GatedAPIFeatures) String() string
String returns the GatedAPIFeatures as string value.
func (*GatedAPIFeatures) UnmarshalEasyJSON ¶
func (t *GatedAPIFeatures) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*GatedAPIFeatures) UnmarshalJSON ¶
func (t *GatedAPIFeatures) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type LoaderID ¶
type LoaderID string
LoaderID unique loader identifier.
See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-LoaderId
type MonotonicTime ¶
MonotonicTime monotonically increasing time in seconds since an arbitrary point in the past.
See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-MonotonicTime
func (MonotonicTime) MarshalEasyJSON ¶
func (t MonotonicTime) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (MonotonicTime) MarshalJSON ¶
func (t MonotonicTime) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (MonotonicTime) Time ¶
func (t MonotonicTime) Time() time.Time
Time returns the MonotonicTime as time.Time value.
func (*MonotonicTime) UnmarshalEasyJSON ¶
func (t *MonotonicTime) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*MonotonicTime) UnmarshalJSON ¶
func (t *MonotonicTime) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type Node ¶
type Node struct { NodeID NodeID `json:"nodeId"` // Node identifier that is passed into the rest of the DOM messages as the nodeId. Backend will only push node with given id once. It is aware of all requested nodes and will only fire DOM events for nodes known to the client. ParentID NodeID `json:"parentId,omitempty"` // The id of the parent node if any. BackendNodeID BackendNodeID `json:"backendNodeId"` // The BackendNodeId for this node. NodeType NodeType `json:"nodeType"` // Node's nodeType. NodeName string `json:"nodeName"` // Node's nodeName. LocalName string `json:"localName"` // Node's localName. NodeValue string `json:"nodeValue"` // Node's nodeValue. ChildNodeCount int64 `json:"childNodeCount,omitempty"` // Child count for Container nodes. Children []*Node `json:"children,omitempty"` // Child nodes of this node when requested with children. Attributes []string `json:"attributes,omitempty"` // Attributes of the Element node in the form of flat array [name1, value1, name2, value2]. DocumentURL string `json:"documentURL,omitempty"` // Document URL that Document or FrameOwner node points to. BaseURL string `json:"baseURL,omitempty"` // Base URL that Document or FrameOwner node uses for URL completion. PublicID string `json:"publicId,omitempty"` // DocumentType's publicId. SystemID string `json:"systemId,omitempty"` // DocumentType's systemId. InternalSubset string `json:"internalSubset,omitempty"` // DocumentType's internalSubset. XMLVersion string `json:"xmlVersion,omitempty"` // Document's XML version in case of XML documents. Name string `json:"name,omitempty"` // Attr's name. Value string `json:"value,omitempty"` // Attr's value. PseudoType PseudoType `json:"pseudoType,omitempty"` // Pseudo element type for this node. PseudoIdentifier string `json:"pseudoIdentifier,omitempty"` // Pseudo element identifier for this node. Only present if there is a valid pseudoType. ShadowRootType ShadowRootType `json:"shadowRootType,omitempty"` // Shadow root type. FrameID FrameID `json:"frameId,omitempty"` // Frame ID for frame owner elements. ContentDocument *Node `json:"contentDocument,omitempty"` // Content document for frame owner elements. ShadowRoots []*Node `json:"shadowRoots,omitempty"` // Shadow root list for given element host. TemplateContent *Node `json:"templateContent,omitempty"` // Content document fragment for template elements. PseudoElements []*Node `json:"pseudoElements,omitempty"` // Pseudo elements associated with this node. DistributedNodes []*BackendNode `json:"distributedNodes,omitempty"` // Distributed nodes for given insertion point. IsSVG bool `json:"isSVG,omitempty"` // Whether the node is SVG. CompatibilityMode CompatibilityMode `json:"compatibilityMode,omitempty"` AssignedSlot *BackendNode `json:"assignedSlot,omitempty"` IsScrollable bool `json:"isScrollable,omitempty"` Parent *Node `json:"-"` // Parent node. Invalidated chan struct{} `json:"-"` // Invalidated channel. State NodeState `json:"-"` // Node state. sync.RWMutex `json:"-"` // Read write mutex. }
Node DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. DOMNode is a base node mirror type.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-Node
func (*Node) AttributeValue ¶
AttributeValue returns the named attribute for the node.
func (*Node) FullXPath ¶
FullXPath returns the full XPath for the node, stopping only at the top most document root.
func (*Node) FullXPathByID ¶
FullXPathByID returns the full XPath for the node, stopping at the top most document root or at the closest parent node with an id attribute.
func (Node) MarshalEasyJSON ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (Node) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*Node) PartialXPath ¶
PartialXPath returns the partial XPath for the node, stopping at the nearest parent document node.
func (*Node) PartialXPathByID ¶
PartialXPathByID returns the partial XPath for the node, stopping at the first parent with an id attribute or at nearest parent document node.
func (*Node) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*Node) UnmarshalJSON ¶
UnmarshalJSON supports json.Unmarshaler interface
type NodeID ¶
type NodeID int64
NodeID unique DOM node identifier.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-NodeId
func (*NodeID) UnmarshalEasyJSON ¶
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*NodeID) UnmarshalJSON ¶
UnmarshalJSON satisfies json.Unmarshaler.
type NodeType ¶
type NodeType int64
NodeType node type.
See: https://developer.mozilla.org/en/docs/Web/API/Node/nodeType
const ( NodeTypeElement NodeType = 1 NodeTypeAttribute NodeType = 2 NodeTypeText NodeType = 3 NodeTypeCDATA NodeType = 4 NodeTypeEntityReference NodeType = 5 NodeTypeEntity NodeType = 6 NodeTypeProcessingInstruction NodeType = 7 NodeTypeComment NodeType = 8 NodeTypeDocument NodeType = 9 NodeTypeDocumentType NodeType = 10 NodeTypeDocumentFragment NodeType = 11 NodeTypeNotation NodeType = 12 )
NodeType values.
func (NodeType) MarshalEasyJSON ¶
MarshalEasyJSON satisfies easyjson.Marshaler.
func (NodeType) MarshalJSON ¶
MarshalJSON satisfies json.Marshaler.
func (*NodeType) UnmarshalEasyJSON ¶
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*NodeType) UnmarshalJSON ¶
UnmarshalJSON satisfies json.Unmarshaler.
type OriginTrial ¶
type OriginTrial struct { TrialName string `json:"trialName"` Status OriginTrialStatus `json:"status"` TokensWithStatus []*OriginTrialTokenWithStatus `json:"tokensWithStatus"` }
OriginTrial [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-OriginTrial
func (OriginTrial) MarshalEasyJSON ¶
func (v OriginTrial) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (OriginTrial) MarshalJSON ¶
func (v OriginTrial) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*OriginTrial) UnmarshalEasyJSON ¶
func (v *OriginTrial) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*OriginTrial) UnmarshalJSON ¶
func (v *OriginTrial) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type OriginTrialStatus ¶
type OriginTrialStatus string
OriginTrialStatus status for an Origin Trial.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-OriginTrialStatus
const ( OriginTrialStatusEnabled OriginTrialStatus = "Enabled" OriginTrialStatusValidTokenNotProvided OriginTrialStatus = "ValidTokenNotProvided" OriginTrialStatusOSNotSupported OriginTrialStatus = "OSNotSupported" OriginTrialStatusTrialNotAllowed OriginTrialStatus = "TrialNotAllowed" )
OriginTrialStatus values.
func (OriginTrialStatus) MarshalEasyJSON ¶
func (t OriginTrialStatus) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (OriginTrialStatus) MarshalJSON ¶
func (t OriginTrialStatus) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (OriginTrialStatus) String ¶
func (t OriginTrialStatus) String() string
String returns the OriginTrialStatus as string value.
func (*OriginTrialStatus) UnmarshalEasyJSON ¶
func (t *OriginTrialStatus) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*OriginTrialStatus) UnmarshalJSON ¶
func (t *OriginTrialStatus) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type OriginTrialToken ¶
type OriginTrialToken struct { Origin string `json:"origin"` MatchSubDomains bool `json:"matchSubDomains"` TrialName string `json:"trialName"` ExpiryTime *TimeSinceEpoch `json:"expiryTime"` IsThirdParty bool `json:"isThirdParty"` UsageRestriction OriginTrialUsageRestriction `json:"usageRestriction"` }
OriginTrialToken [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-OriginTrialToken
func (OriginTrialToken) MarshalEasyJSON ¶
func (v OriginTrialToken) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (OriginTrialToken) MarshalJSON ¶
func (v OriginTrialToken) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*OriginTrialToken) UnmarshalEasyJSON ¶
func (v *OriginTrialToken) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*OriginTrialToken) UnmarshalJSON ¶
func (v *OriginTrialToken) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type OriginTrialTokenStatus ¶
type OriginTrialTokenStatus string
OriginTrialTokenStatus origin Trial(https://www.chromium.org/blink/origin-trials) support. Status for an Origin Trial token.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-OriginTrialTokenStatus
const ( OriginTrialTokenStatusSuccess OriginTrialTokenStatus = "Success" OriginTrialTokenStatusNotSupported OriginTrialTokenStatus = "NotSupported" OriginTrialTokenStatusInsecure OriginTrialTokenStatus = "Insecure" OriginTrialTokenStatusExpired OriginTrialTokenStatus = "Expired" OriginTrialTokenStatusWrongOrigin OriginTrialTokenStatus = "WrongOrigin" OriginTrialTokenStatusInvalidSignature OriginTrialTokenStatus = "InvalidSignature" OriginTrialTokenStatusMalformed OriginTrialTokenStatus = "Malformed" OriginTrialTokenStatusWrongVersion OriginTrialTokenStatus = "WrongVersion" OriginTrialTokenStatusFeatureDisabled OriginTrialTokenStatus = "FeatureDisabled" OriginTrialTokenStatusTokenDisabled OriginTrialTokenStatus = "TokenDisabled" OriginTrialTokenStatusFeatureDisabledForUser OriginTrialTokenStatus = "FeatureDisabledForUser" OriginTrialTokenStatusUnknownTrial OriginTrialTokenStatus = "UnknownTrial" )
OriginTrialTokenStatus values.
func (OriginTrialTokenStatus) MarshalEasyJSON ¶
func (t OriginTrialTokenStatus) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (OriginTrialTokenStatus) MarshalJSON ¶
func (t OriginTrialTokenStatus) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (OriginTrialTokenStatus) String ¶
func (t OriginTrialTokenStatus) String() string
String returns the OriginTrialTokenStatus as string value.
func (*OriginTrialTokenStatus) UnmarshalEasyJSON ¶
func (t *OriginTrialTokenStatus) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*OriginTrialTokenStatus) UnmarshalJSON ¶
func (t *OriginTrialTokenStatus) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type OriginTrialTokenWithStatus ¶
type OriginTrialTokenWithStatus struct { RawTokenText string `json:"rawTokenText"` ParsedToken *OriginTrialToken `json:"parsedToken,omitempty"` // parsedToken is present only when the token is extractable and parsable. Status OriginTrialTokenStatus `json:"status"` }
OriginTrialTokenWithStatus [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-OriginTrialTokenWithStatus
func (OriginTrialTokenWithStatus) MarshalEasyJSON ¶
func (v OriginTrialTokenWithStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (OriginTrialTokenWithStatus) MarshalJSON ¶
func (v OriginTrialTokenWithStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*OriginTrialTokenWithStatus) UnmarshalEasyJSON ¶
func (v *OriginTrialTokenWithStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*OriginTrialTokenWithStatus) UnmarshalJSON ¶
func (v *OriginTrialTokenWithStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type OriginTrialUsageRestriction ¶
type OriginTrialUsageRestriction string
OriginTrialUsageRestriction [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-OriginTrialUsageRestriction
const ( OriginTrialUsageRestrictionNone OriginTrialUsageRestriction = "None" OriginTrialUsageRestrictionSubset OriginTrialUsageRestriction = "Subset" )
OriginTrialUsageRestriction values.
func (OriginTrialUsageRestriction) MarshalEasyJSON ¶
func (t OriginTrialUsageRestriction) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (OriginTrialUsageRestriction) MarshalJSON ¶
func (t OriginTrialUsageRestriction) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (OriginTrialUsageRestriction) String ¶
func (t OriginTrialUsageRestriction) String() string
String returns the OriginTrialUsageRestriction as string value.
func (*OriginTrialUsageRestriction) UnmarshalEasyJSON ¶
func (t *OriginTrialUsageRestriction) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*OriginTrialUsageRestriction) UnmarshalJSON ¶
func (t *OriginTrialUsageRestriction) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type PseudoType ¶
type PseudoType string
PseudoType pseudo element type.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-PseudoType
const ( PseudoTypeFirstLine PseudoType = "first-line" PseudoTypeFirstLetter PseudoType = "first-letter" PseudoTypeBefore PseudoType = "before" PseudoTypeAfter PseudoType = "after" PseudoTypeMarker PseudoType = "marker" PseudoTypeBackdrop PseudoType = "backdrop" PseudoTypeColumn PseudoType = "column" PseudoTypeSelection PseudoType = "selection" PseudoTypeSearchText PseudoType = "search-text" PseudoTypeTargetText PseudoType = "target-text" PseudoTypeSpellingError PseudoType = "spelling-error" PseudoTypeGrammarError PseudoType = "grammar-error" PseudoTypeHighlight PseudoType = "highlight" PseudoTypeFirstLineInherited PseudoType = "first-line-inherited" PseudoTypeScrollMarker PseudoType = "scroll-marker" PseudoTypeScrollMarkerGroup PseudoType = "scroll-marker-group" PseudoTypeScrollNextButton PseudoType = "scroll-next-button" PseudoTypeScrollPrevButton PseudoType = "scroll-prev-button" PseudoTypeScrollbar PseudoType = "scrollbar" PseudoTypeScrollbarThumb PseudoType = "scrollbar-thumb" PseudoTypeScrollbarButton PseudoType = "scrollbar-button" PseudoTypeScrollbarTrack PseudoType = "scrollbar-track" PseudoTypeScrollbarTrackPiece PseudoType = "scrollbar-track-piece" PseudoTypeScrollbarCorner PseudoType = "scrollbar-corner" PseudoTypeResizer PseudoType = "resizer" PseudoTypeInputListButton PseudoType = "input-list-button" PseudoTypeViewTransition PseudoType = "view-transition" PseudoTypeViewTransitionGroup PseudoType = "view-transition-group" PseudoTypeViewTransitionImagePair PseudoType = "view-transition-image-pair" PseudoTypeViewTransitionOld PseudoType = "view-transition-old" PseudoTypeViewTransitionNew PseudoType = "view-transition-new" PseudoTypePlaceholder PseudoType = "placeholder" PseudoTypeFileSelectorButton PseudoType = "file-selector-button" PseudoTypeDetailsContent PseudoType = "details-content" PseudoTypeSelectFallbackButton PseudoType = "select-fallback-button" PseudoTypeSelectFallbackButtonText PseudoType = "select-fallback-button-text" PseudoTypePicker PseudoType = "picker" )
PseudoType values.
func (PseudoType) MarshalEasyJSON ¶
func (t PseudoType) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (PseudoType) MarshalJSON ¶
func (t PseudoType) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (PseudoType) String ¶
func (t PseudoType) String() string
String returns the PseudoType as string value.
func (*PseudoType) UnmarshalEasyJSON ¶
func (t *PseudoType) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*PseudoType) UnmarshalJSON ¶
func (t *PseudoType) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type RGBA ¶
type RGBA struct { R int64 `json:"r"` // The red component, in the [0-255] range. G int64 `json:"g"` // The green component, in the [0-255] range. B int64 `json:"b"` // The blue component, in the [0-255] range. A float64 `json:"a"` // The alpha component, in the [0-1] range (default: 1). }
RGBA a structure holding an RGBA color.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-RGBA
func (RGBA) MarshalEasyJSON ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (RGBA) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*RGBA) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*RGBA) UnmarshalJSON ¶
UnmarshalJSON supports json.Unmarshaler interface
type SecureContextType ¶
type SecureContextType string
SecureContextType indicates whether the frame is a secure context and why it is the case.
See: https://chromedevtools.github.io/devtools-protocol/tot/Page#type-SecureContextType
const ( SecureContextTypeSecure SecureContextType = "Secure" SecureContextTypeSecureLocalhost SecureContextType = "SecureLocalhost" SecureContextTypeInsecureScheme SecureContextType = "InsecureScheme" SecureContextTypeInsecureAncestor SecureContextType = "InsecureAncestor" )
SecureContextType values.
func (SecureContextType) MarshalEasyJSON ¶
func (t SecureContextType) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (SecureContextType) MarshalJSON ¶
func (t SecureContextType) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (SecureContextType) String ¶
func (t SecureContextType) String() string
String returns the SecureContextType as string value.
func (*SecureContextType) UnmarshalEasyJSON ¶
func (t *SecureContextType) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*SecureContextType) UnmarshalJSON ¶
func (t *SecureContextType) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type ShadowRootType ¶
type ShadowRootType string
ShadowRootType shadow root type.
See: https://chromedevtools.github.io/devtools-protocol/tot/DOM#type-ShadowRootType
const ( ShadowRootTypeUserAgent ShadowRootType = "user-agent" ShadowRootTypeOpen ShadowRootType = "open" ShadowRootTypeClosed ShadowRootType = "closed" )
ShadowRootType values.
func (ShadowRootType) MarshalEasyJSON ¶
func (t ShadowRootType) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (ShadowRootType) MarshalJSON ¶
func (t ShadowRootType) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (ShadowRootType) String ¶
func (t ShadowRootType) String() string
String returns the ShadowRootType as string value.
func (*ShadowRootType) UnmarshalEasyJSON ¶
func (t *ShadowRootType) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*ShadowRootType) UnmarshalJSON ¶
func (t *ShadowRootType) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type TimeSinceEpoch ¶
TimeSinceEpoch UTC time in seconds, counted from January 1, 1970.
See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-TimeSinceEpoch
func (TimeSinceEpoch) MarshalEasyJSON ¶
func (t TimeSinceEpoch) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (TimeSinceEpoch) MarshalJSON ¶
func (t TimeSinceEpoch) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (TimeSinceEpoch) Time ¶
func (t TimeSinceEpoch) Time() time.Time
Time returns the TimeSinceEpoch as time.Time value.
func (*TimeSinceEpoch) UnmarshalEasyJSON ¶
func (t *TimeSinceEpoch) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*TimeSinceEpoch) UnmarshalJSON ¶
func (t *TimeSinceEpoch) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type TimeSinceEpochMilli ¶
TimeSinceEpochMilli special timestamp type for Response's responseTime field.
See: https://chromedevtools.github.io/devtools-protocol/tot/Network#type-TimeSinceEpochMilli
func (TimeSinceEpochMilli) MarshalEasyJSON ¶
func (t TimeSinceEpochMilli) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (TimeSinceEpochMilli) MarshalJSON ¶
func (t TimeSinceEpochMilli) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (TimeSinceEpochMilli) Time ¶
func (t TimeSinceEpochMilli) Time() time.Time
Time returns the TimeSinceEpochMilli as time.Time value.
func (*TimeSinceEpochMilli) UnmarshalEasyJSON ¶
func (t *TimeSinceEpochMilli) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*TimeSinceEpochMilli) UnmarshalJSON ¶
func (t *TimeSinceEpochMilli) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.