// Package css provides the Chrome Debugging Protocol // commands, types, and events for the Chrome CSS domain. // // This domain exposes CSS read/write operations. All CSS objects // (stylesheets, rules, and styles) have an associated id used in subsequent // operations on the related object. Each object type has a specific id // structure, and those are not interchangeable between objects of different // kinds. CSS objects can be loaded using the get*ForNode() calls (which accept // a DOM node id). A client can also discover all the existing stylesheets with // the getAllStyleSheets() method (or keeping track of the // styleSheetAdded/styleSheetRemoved events) and subsequently load the required // stylesheet contents using the getStyleSheet[Text]() methods. // // Generated by the chromedp-gen command. package css // AUTOGENERATED. DO NOT EDIT. import ( "context" cdp "github.com/knq/chromedp/cdp" "github.com/mailru/easyjson" ) // EnableParams enables the CSS agent for the given page. Clients should not // assume that the CSS agent has been enabled until the result of this command // is received. type EnableParams struct{} // Enable enables the CSS agent for the given page. Clients should not assume // that the CSS agent has been enabled until the result of this command is // received. func Enable() *EnableParams { return &EnableParams{} } // Do executes CSS.enable. func (p *EnableParams) Do(ctxt context.Context, h cdp.FrameHandler) (err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandCSSEnable, cdp.Empty) // read response select { case res := <-ch: if res == nil { return cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: return nil case error: return v } case <-ctxt.Done(): return cdp.ErrContextDone } return cdp.ErrUnknownResult } // DisableParams disables the CSS agent for the given page. type DisableParams struct{} // Disable disables the CSS agent for the given page. func Disable() *DisableParams { return &DisableParams{} } // Do executes CSS.disable. func (p *DisableParams) Do(ctxt context.Context, h cdp.FrameHandler) (err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandCSSDisable, cdp.Empty) // read response select { case res := <-ch: if res == nil { return cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: return nil case error: return v } case <-ctxt.Done(): return cdp.ErrContextDone } return cdp.ErrUnknownResult } // GetMatchedStylesForNodeParams returns requested styles for a DOM node // identified by nodeId. type GetMatchedStylesForNodeParams struct { NodeID cdp.NodeID `json:"nodeId"` } // GetMatchedStylesForNode returns requested styles for a DOM node identified // by nodeId. // // parameters: // nodeID func GetMatchedStylesForNode(nodeID cdp.NodeID) *GetMatchedStylesForNodeParams { return &GetMatchedStylesForNodeParams{ NodeID: nodeID, } } // GetMatchedStylesForNodeReturns return values. type GetMatchedStylesForNodeReturns struct { InlineStyle *Style `json:"inlineStyle,omitempty"` // Inline style for the specified DOM node. AttributesStyle *Style `json:"attributesStyle,omitempty"` // Attribute-defined element style (e.g. resulting from "width=20 height=100%"). MatchedCSSRules []*RuleMatch `json:"matchedCSSRules,omitempty"` // CSS rules matching this node, from all applicable stylesheets. PseudoElements []*PseudoElementMatches `json:"pseudoElements,omitempty"` // Pseudo style matches for this node. Inherited []*InheritedStyleEntry `json:"inherited,omitempty"` // A chain of inherited styles (from the immediate node parent up to the DOM tree root). CSSKeyframesRules []*KeyframesRule `json:"cssKeyframesRules,omitempty"` // A list of CSS keyframed animations matching this node. } // Do executes CSS.getMatchedStylesForNode. // // returns: // inlineStyle - Inline style for the specified DOM node. // attributesStyle - Attribute-defined element style (e.g. resulting from "width=20 height=100%"). // matchedCSSRules - CSS rules matching this node, from all applicable stylesheets. // pseudoElements - Pseudo style matches for this node. // inherited - A chain of inherited styles (from the immediate node parent up to the DOM tree root). // cssKeyframesRules - A list of CSS keyframed animations matching this node. func (p *GetMatchedStylesForNodeParams) Do(ctxt context.Context, h cdp.FrameHandler) (inlineStyle *Style, attributesStyle *Style, matchedCSSRules []*RuleMatch, pseudoElements []*PseudoElementMatches, inherited []*InheritedStyleEntry, cssKeyframesRules []*KeyframesRule, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, nil, nil, nil, nil, nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetMatchedStylesForNode, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, nil, nil, nil, nil, nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetMatchedStylesForNodeReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, nil, nil, nil, nil, nil, cdp.ErrInvalidResult } return r.InlineStyle, r.AttributesStyle, r.MatchedCSSRules, r.PseudoElements, r.Inherited, r.CSSKeyframesRules, nil case error: return nil, nil, nil, nil, nil, nil, v } case <-ctxt.Done(): return nil, nil, nil, nil, nil, nil, cdp.ErrContextDone } return nil, nil, nil, nil, nil, nil, cdp.ErrUnknownResult } // GetInlineStylesForNodeParams returns the styles defined inline (explicitly // in the "style" attribute and implicitly, using DOM attributes) for a DOM node // identified by nodeId. type GetInlineStylesForNodeParams struct { NodeID cdp.NodeID `json:"nodeId"` } // GetInlineStylesForNode returns the styles defined inline (explicitly in // the "style" attribute and implicitly, using DOM attributes) for a DOM node // identified by nodeId. // // parameters: // nodeID func GetInlineStylesForNode(nodeID cdp.NodeID) *GetInlineStylesForNodeParams { return &GetInlineStylesForNodeParams{ NodeID: nodeID, } } // GetInlineStylesForNodeReturns return values. type GetInlineStylesForNodeReturns struct { InlineStyle *Style `json:"inlineStyle,omitempty"` // Inline style for the specified DOM node. AttributesStyle *Style `json:"attributesStyle,omitempty"` // Attribute-defined element style (e.g. resulting from "width=20 height=100%"). } // Do executes CSS.getInlineStylesForNode. // // returns: // inlineStyle - Inline style for the specified DOM node. // attributesStyle - Attribute-defined element style (e.g. resulting from "width=20 height=100%"). func (p *GetInlineStylesForNodeParams) Do(ctxt context.Context, h cdp.FrameHandler) (inlineStyle *Style, attributesStyle *Style, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetInlineStylesForNode, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetInlineStylesForNodeReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, nil, cdp.ErrInvalidResult } return r.InlineStyle, r.AttributesStyle, nil case error: return nil, nil, v } case <-ctxt.Done(): return nil, nil, cdp.ErrContextDone } return nil, nil, cdp.ErrUnknownResult } // GetComputedStyleForNodeParams returns the computed style for a DOM node // identified by nodeId. type GetComputedStyleForNodeParams struct { NodeID cdp.NodeID `json:"nodeId"` } // GetComputedStyleForNode returns the computed style for a DOM node // identified by nodeId. // // parameters: // nodeID func GetComputedStyleForNode(nodeID cdp.NodeID) *GetComputedStyleForNodeParams { return &GetComputedStyleForNodeParams{ NodeID: nodeID, } } // GetComputedStyleForNodeReturns return values. type GetComputedStyleForNodeReturns struct { ComputedStyle []*ComputedProperty `json:"computedStyle,omitempty"` // Computed style for the specified DOM node. } // Do executes CSS.getComputedStyleForNode. // // returns: // computedStyle - Computed style for the specified DOM node. func (p *GetComputedStyleForNodeParams) Do(ctxt context.Context, h cdp.FrameHandler) (computedStyle []*ComputedProperty, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetComputedStyleForNode, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetComputedStyleForNodeReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.ComputedStyle, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // GetPlatformFontsForNodeParams requests information about platform fonts // which we used to render child TextNodes in the given node. type GetPlatformFontsForNodeParams struct { NodeID cdp.NodeID `json:"nodeId"` } // GetPlatformFontsForNode requests information about platform fonts which we // used to render child TextNodes in the given node. // // parameters: // nodeID func GetPlatformFontsForNode(nodeID cdp.NodeID) *GetPlatformFontsForNodeParams { return &GetPlatformFontsForNodeParams{ NodeID: nodeID, } } // GetPlatformFontsForNodeReturns return values. type GetPlatformFontsForNodeReturns struct { Fonts []*PlatformFontUsage `json:"fonts,omitempty"` // Usage statistics for every employed platform font. } // Do executes CSS.getPlatformFontsForNode. // // returns: // fonts - Usage statistics for every employed platform font. func (p *GetPlatformFontsForNodeParams) Do(ctxt context.Context, h cdp.FrameHandler) (fonts []*PlatformFontUsage, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetPlatformFontsForNode, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetPlatformFontsForNodeReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.Fonts, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // GetStyleSheetTextParams returns the current textual content and the URL // for a stylesheet. type GetStyleSheetTextParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` } // GetStyleSheetText returns the current textual content and the URL for a // stylesheet. // // parameters: // styleSheetID func GetStyleSheetText(styleSheetID StyleSheetID) *GetStyleSheetTextParams { return &GetStyleSheetTextParams{ StyleSheetID: styleSheetID, } } // GetStyleSheetTextReturns return values. type GetStyleSheetTextReturns struct { Text string `json:"text,omitempty"` // The stylesheet text. } // Do executes CSS.getStyleSheetText. // // returns: // text - The stylesheet text. func (p *GetStyleSheetTextParams) Do(ctxt context.Context, h cdp.FrameHandler) (text string, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return "", err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetStyleSheetText, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return "", cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetStyleSheetTextReturns err = easyjson.Unmarshal(v, &r) if err != nil { return "", cdp.ErrInvalidResult } return r.Text, nil case error: return "", v } case <-ctxt.Done(): return "", cdp.ErrContextDone } return "", cdp.ErrUnknownResult } // CollectClassNamesParams returns all class names from specified stylesheet. type CollectClassNamesParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` } // CollectClassNames returns all class names from specified stylesheet. // // parameters: // styleSheetID func CollectClassNames(styleSheetID StyleSheetID) *CollectClassNamesParams { return &CollectClassNamesParams{ StyleSheetID: styleSheetID, } } // CollectClassNamesReturns return values. type CollectClassNamesReturns struct { ClassNames []string `json:"classNames,omitempty"` // Class name list. } // Do executes CSS.collectClassNames. // // returns: // classNames - Class name list. func (p *CollectClassNamesParams) Do(ctxt context.Context, h cdp.FrameHandler) (classNames []string, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSCollectClassNames, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r CollectClassNamesReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.ClassNames, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // SetStyleSheetTextParams sets the new stylesheet text. type SetStyleSheetTextParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` Text string `json:"text"` } // SetStyleSheetText sets the new stylesheet text. // // parameters: // styleSheetID // text func SetStyleSheetText(styleSheetID StyleSheetID, text string) *SetStyleSheetTextParams { return &SetStyleSheetTextParams{ StyleSheetID: styleSheetID, Text: text, } } // SetStyleSheetTextReturns return values. type SetStyleSheetTextReturns struct { SourceMapURL string `json:"sourceMapURL,omitempty"` // URL of source map associated with script (if any). } // Do executes CSS.setStyleSheetText. // // returns: // sourceMapURL - URL of source map associated with script (if any). func (p *SetStyleSheetTextParams) Do(ctxt context.Context, h cdp.FrameHandler) (sourceMapURL string, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return "", err } // execute ch := h.Execute(ctxt, cdp.CommandCSSSetStyleSheetText, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return "", cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r SetStyleSheetTextReturns err = easyjson.Unmarshal(v, &r) if err != nil { return "", cdp.ErrInvalidResult } return r.SourceMapURL, nil case error: return "", v } case <-ctxt.Done(): return "", cdp.ErrContextDone } return "", cdp.ErrUnknownResult } // SetRuleSelectorParams modifies the rule selector. type SetRuleSelectorParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` Range *SourceRange `json:"range"` Selector string `json:"selector"` } // SetRuleSelector modifies the rule selector. // // parameters: // styleSheetID // range // selector func SetRuleSelector(styleSheetID StyleSheetID, rangeVal *SourceRange, selector string) *SetRuleSelectorParams { return &SetRuleSelectorParams{ StyleSheetID: styleSheetID, Range: rangeVal, Selector: selector, } } // SetRuleSelectorReturns return values. type SetRuleSelectorReturns struct { SelectorList *SelectorList `json:"selectorList,omitempty"` // The resulting selector list after modification. } // Do executes CSS.setRuleSelector. // // returns: // selectorList - The resulting selector list after modification. func (p *SetRuleSelectorParams) Do(ctxt context.Context, h cdp.FrameHandler) (selectorList *SelectorList, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSSetRuleSelector, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r SetRuleSelectorReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.SelectorList, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // SetKeyframeKeyParams modifies the keyframe rule key text. type SetKeyframeKeyParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` Range *SourceRange `json:"range"` KeyText string `json:"keyText"` } // SetKeyframeKey modifies the keyframe rule key text. // // parameters: // styleSheetID // range // keyText func SetKeyframeKey(styleSheetID StyleSheetID, rangeVal *SourceRange, keyText string) *SetKeyframeKeyParams { return &SetKeyframeKeyParams{ StyleSheetID: styleSheetID, Range: rangeVal, KeyText: keyText, } } // SetKeyframeKeyReturns return values. type SetKeyframeKeyReturns struct { KeyText *Value `json:"keyText,omitempty"` // The resulting key text after modification. } // Do executes CSS.setKeyframeKey. // // returns: // keyText - The resulting key text after modification. func (p *SetKeyframeKeyParams) Do(ctxt context.Context, h cdp.FrameHandler) (keyText *Value, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSSetKeyframeKey, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r SetKeyframeKeyReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.KeyText, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // SetStyleTextsParams applies specified style edits one after another in the // given order. type SetStyleTextsParams struct { Edits []*StyleDeclarationEdit `json:"edits"` } // SetStyleTexts applies specified style edits one after another in the given // order. // // parameters: // edits func SetStyleTexts(edits []*StyleDeclarationEdit) *SetStyleTextsParams { return &SetStyleTextsParams{ Edits: edits, } } // SetStyleTextsReturns return values. type SetStyleTextsReturns struct { Styles []*Style `json:"styles,omitempty"` // The resulting styles after modification. } // Do executes CSS.setStyleTexts. // // returns: // styles - The resulting styles after modification. func (p *SetStyleTextsParams) Do(ctxt context.Context, h cdp.FrameHandler) (styles []*Style, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSSetStyleTexts, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r SetStyleTextsReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.Styles, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // SetMediaTextParams modifies the rule selector. type SetMediaTextParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` Range *SourceRange `json:"range"` Text string `json:"text"` } // SetMediaText modifies the rule selector. // // parameters: // styleSheetID // range // text func SetMediaText(styleSheetID StyleSheetID, rangeVal *SourceRange, text string) *SetMediaTextParams { return &SetMediaTextParams{ StyleSheetID: styleSheetID, Range: rangeVal, Text: text, } } // SetMediaTextReturns return values. type SetMediaTextReturns struct { Media *Media `json:"media,omitempty"` // The resulting CSS media rule after modification. } // Do executes CSS.setMediaText. // // returns: // media - The resulting CSS media rule after modification. func (p *SetMediaTextParams) Do(ctxt context.Context, h cdp.FrameHandler) (media *Media, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSSetMediaText, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r SetMediaTextReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.Media, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // CreateStyleSheetParams creates a new special "via-inspector" stylesheet in // the frame with given frameId. type CreateStyleSheetParams struct { FrameID cdp.FrameID `json:"frameId"` // Identifier of the frame where "via-inspector" stylesheet should be created. } // CreateStyleSheet creates a new special "via-inspector" stylesheet in the // frame with given frameId. // // parameters: // frameID - Identifier of the frame where "via-inspector" stylesheet should be created. func CreateStyleSheet(frameID cdp.FrameID) *CreateStyleSheetParams { return &CreateStyleSheetParams{ FrameID: frameID, } } // CreateStyleSheetReturns return values. type CreateStyleSheetReturns struct { StyleSheetID StyleSheetID `json:"styleSheetId,omitempty"` // Identifier of the created "via-inspector" stylesheet. } // Do executes CSS.createStyleSheet. // // returns: // styleSheetID - Identifier of the created "via-inspector" stylesheet. func (p *CreateStyleSheetParams) Do(ctxt context.Context, h cdp.FrameHandler) (styleSheetID StyleSheetID, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return "", err } // execute ch := h.Execute(ctxt, cdp.CommandCSSCreateStyleSheet, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return "", cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r CreateStyleSheetReturns err = easyjson.Unmarshal(v, &r) if err != nil { return "", cdp.ErrInvalidResult } return r.StyleSheetID, nil case error: return "", v } case <-ctxt.Done(): return "", cdp.ErrContextDone } return "", cdp.ErrUnknownResult } // AddRuleParams inserts a new rule with the given ruleText in a stylesheet // with given styleSheetId, at the position specified by location. type AddRuleParams struct { StyleSheetID StyleSheetID `json:"styleSheetId"` // The css style sheet identifier where a new rule should be inserted. RuleText string `json:"ruleText"` // The text of a new rule. Location *SourceRange `json:"location"` // Text position of a new rule in the target style sheet. } // AddRule inserts a new rule with the given ruleText in a stylesheet with // given styleSheetId, at the position specified by location. // // parameters: // styleSheetID - The css style sheet identifier where a new rule should be inserted. // ruleText - The text of a new rule. // location - Text position of a new rule in the target style sheet. func AddRule(styleSheetID StyleSheetID, ruleText string, location *SourceRange) *AddRuleParams { return &AddRuleParams{ StyleSheetID: styleSheetID, RuleText: ruleText, Location: location, } } // AddRuleReturns return values. type AddRuleReturns struct { Rule *Rule `json:"rule,omitempty"` // The newly created rule. } // Do executes CSS.addRule. // // returns: // rule - The newly created rule. func (p *AddRuleParams) Do(ctxt context.Context, h cdp.FrameHandler) (rule *Rule, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSAddRule, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r AddRuleReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.Rule, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // ForcePseudoStateParams ensures that the given node will have specified // pseudo-classes whenever its style is computed by the browser. type ForcePseudoStateParams struct { NodeID cdp.NodeID `json:"nodeId"` // The element id for which to force the pseudo state. ForcedPseudoClasses []PseudoClass `json:"forcedPseudoClasses"` // Element pseudo classes to force when computing the element's style. } // ForcePseudoState ensures that the given node will have specified // pseudo-classes whenever its style is computed by the browser. // // parameters: // nodeID - The element id for which to force the pseudo state. // forcedPseudoClasses - Element pseudo classes to force when computing the element's style. func ForcePseudoState(nodeID cdp.NodeID, forcedPseudoClasses []PseudoClass) *ForcePseudoStateParams { return &ForcePseudoStateParams{ NodeID: nodeID, ForcedPseudoClasses: forcedPseudoClasses, } } // Do executes CSS.forcePseudoState. func (p *ForcePseudoStateParams) Do(ctxt context.Context, h cdp.FrameHandler) (err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return err } // execute ch := h.Execute(ctxt, cdp.CommandCSSForcePseudoState, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: return nil case error: return v } case <-ctxt.Done(): return cdp.ErrContextDone } return cdp.ErrUnknownResult } // GetMediaQueriesParams returns all media queries parsed by the rendering // engine. type GetMediaQueriesParams struct{} // GetMediaQueries returns all media queries parsed by the rendering engine. func GetMediaQueries() *GetMediaQueriesParams { return &GetMediaQueriesParams{} } // GetMediaQueriesReturns return values. type GetMediaQueriesReturns struct { Medias []*Media `json:"medias,omitempty"` } // Do executes CSS.getMediaQueries. // // returns: // medias func (p *GetMediaQueriesParams) Do(ctxt context.Context, h cdp.FrameHandler) (medias []*Media, err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetMediaQueries, cdp.Empty) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetMediaQueriesReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.Medias, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // SetEffectivePropertyValueForNodeParams find a rule with the given active // property for the given node and set the new value for this property. type SetEffectivePropertyValueForNodeParams struct { NodeID cdp.NodeID `json:"nodeId"` // The element id for which to set property. PropertyName string `json:"propertyName"` Value string `json:"value"` } // SetEffectivePropertyValueForNode find a rule with the given active // property for the given node and set the new value for this property. // // parameters: // nodeID - The element id for which to set property. // propertyName // value func SetEffectivePropertyValueForNode(nodeID cdp.NodeID, propertyName string, value string) *SetEffectivePropertyValueForNodeParams { return &SetEffectivePropertyValueForNodeParams{ NodeID: nodeID, PropertyName: propertyName, Value: value, } } // Do executes CSS.setEffectivePropertyValueForNode. func (p *SetEffectivePropertyValueForNodeParams) Do(ctxt context.Context, h cdp.FrameHandler) (err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return err } // execute ch := h.Execute(ctxt, cdp.CommandCSSSetEffectivePropertyValueForNode, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: return nil case error: return v } case <-ctxt.Done(): return cdp.ErrContextDone } return cdp.ErrUnknownResult } // GetBackgroundColorsParams [no description]. type GetBackgroundColorsParams struct { NodeID cdp.NodeID `json:"nodeId"` // Id of the node to get background colors for. } // GetBackgroundColors [no description]. // // parameters: // nodeID - Id of the node to get background colors for. func GetBackgroundColors(nodeID cdp.NodeID) *GetBackgroundColorsParams { return &GetBackgroundColorsParams{ NodeID: nodeID, } } // GetBackgroundColorsReturns return values. type GetBackgroundColorsReturns struct { BackgroundColors []string `json:"backgroundColors,omitempty"` // The range of background colors behind this element, if it contains any visible text. If no visible text is present, this will be undefined. In the case of a flat background color, this will consist of simply that color. In the case of a gradient, this will consist of each of the color stops. For anything more complicated, this will be an empty array. Images will be ignored (as if the image had failed to load). } // Do executes CSS.getBackgroundColors. // // returns: // backgroundColors - The range of background colors behind this element, if it contains any visible text. If no visible text is present, this will be undefined. In the case of a flat background color, this will consist of simply that color. In the case of a gradient, this will consist of each of the color stops. For anything more complicated, this will be an empty array. Images will be ignored (as if the image had failed to load). func (p *GetBackgroundColorsParams) Do(ctxt context.Context, h cdp.FrameHandler) (backgroundColors []string, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetBackgroundColors, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetBackgroundColorsReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.BackgroundColors, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // GetLayoutTreeAndStylesParams for the main document and any content // documents, return the LayoutTreeNodes and a whitelisted subset of the // computed style. It only returns pushed nodes, on way to pull all nodes is to // call DOM.getDocument with a depth of -1. type GetLayoutTreeAndStylesParams struct { ComputedStyleWhitelist []string `json:"computedStyleWhitelist"` // Whitelist of computed styles to return. } // GetLayoutTreeAndStyles for the main document and any content documents, // return the LayoutTreeNodes and a whitelisted subset of the computed style. It // only returns pushed nodes, on way to pull all nodes is to call // DOM.getDocument with a depth of -1. // // parameters: // computedStyleWhitelist - Whitelist of computed styles to return. func GetLayoutTreeAndStyles(computedStyleWhitelist []string) *GetLayoutTreeAndStylesParams { return &GetLayoutTreeAndStylesParams{ ComputedStyleWhitelist: computedStyleWhitelist, } } // GetLayoutTreeAndStylesReturns return values. type GetLayoutTreeAndStylesReturns struct { LayoutTreeNodes []*LayoutTreeNode `json:"layoutTreeNodes,omitempty"` ComputedStyles []*ComputedStyle `json:"computedStyles,omitempty"` } // Do executes CSS.getLayoutTreeAndStyles. // // returns: // layoutTreeNodes // computedStyles func (p *GetLayoutTreeAndStylesParams) Do(ctxt context.Context, h cdp.FrameHandler) (layoutTreeNodes []*LayoutTreeNode, computedStyles []*ComputedStyle, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, nil, err } // execute ch := h.Execute(ctxt, cdp.CommandCSSGetLayoutTreeAndStyles, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetLayoutTreeAndStylesReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, nil, cdp.ErrInvalidResult } return r.LayoutTreeNodes, r.ComputedStyles, nil case error: return nil, nil, v } case <-ctxt.Done(): return nil, nil, cdp.ErrContextDone } return nil, nil, cdp.ErrUnknownResult } // StartRuleUsageTrackingParams enables the selector recording. type StartRuleUsageTrackingParams struct{} // StartRuleUsageTracking enables the selector recording. func StartRuleUsageTracking() *StartRuleUsageTrackingParams { return &StartRuleUsageTrackingParams{} } // Do executes CSS.startRuleUsageTracking. func (p *StartRuleUsageTrackingParams) Do(ctxt context.Context, h cdp.FrameHandler) (err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandCSSStartRuleUsageTracking, cdp.Empty) // read response select { case res := <-ch: if res == nil { return cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: return nil case error: return v } case <-ctxt.Done(): return cdp.ErrContextDone } return cdp.ErrUnknownResult } // StopRuleUsageTrackingParams the list of rules with an indication of // whether these were used. type StopRuleUsageTrackingParams struct{} // StopRuleUsageTracking the list of rules with an indication of whether // these were used. func StopRuleUsageTracking() *StopRuleUsageTrackingParams { return &StopRuleUsageTrackingParams{} } // StopRuleUsageTrackingReturns return values. type StopRuleUsageTrackingReturns struct { RuleUsage []*RuleUsage `json:"ruleUsage,omitempty"` } // Do executes CSS.stopRuleUsageTracking. // // returns: // ruleUsage func (p *StopRuleUsageTrackingParams) Do(ctxt context.Context, h cdp.FrameHandler) (ruleUsage []*RuleUsage, err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandCSSStopRuleUsageTracking, cdp.Empty) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r StopRuleUsageTrackingReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.RuleUsage, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult }