-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathcdp.go
2146 lines (2024 loc) · 101 KB
/
cdp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package cdp
import (
"context"
"errors"
"fmt"
"strconv"
"strings"
"sync"
"time"
"github.com/knq/sysutil"
"github.com/mailru/easyjson"
"github.com/mailru/easyjson/jlexer"
"github.com/mailru/easyjson/jwriter"
)
// Code generated by chromedp-gen. DO NOT EDIT.
// NodeID unique DOM node identifier.
type NodeID int64
// Int64 returns the NodeID as int64 value.
func (t NodeID) Int64() int64 {
return int64(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *NodeID) UnmarshalEasyJSON(in *jlexer.Lexer) {
buf := in.Raw()
if l := len(buf); l > 2 && buf[0] == '"' && buf[l-1] == '"' {
buf = buf[1 : l-1]
}
v, err := strconv.ParseInt(string(buf), 10, 64)
if err != nil {
in.AddError(err)
}
*t = NodeID(v)
}
// UnmarshalJSON satisfies json.Unmarshaler.
func (t *NodeID) UnmarshalJSON(buf []byte) error {
return easyjson.Unmarshal(buf, t)
}
// BackendNodeID unique DOM node identifier used to reference a node that may
// not have been pushed to the front-end.
type BackendNodeID int64
// Int64 returns the BackendNodeID as int64 value.
func (t BackendNodeID) Int64() int64 {
return int64(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *BackendNodeID) UnmarshalEasyJSON(in *jlexer.Lexer) {
buf := in.Raw()
if l := len(buf); l > 2 && buf[0] == '"' && buf[l-1] == '"' {
buf = buf[1 : l-1]
}
v, err := strconv.ParseInt(string(buf), 10, 64)
if err != nil {
in.AddError(err)
}
*t = BackendNodeID(v)
}
// UnmarshalJSON satisfies json.Unmarshaler.
func (t *BackendNodeID) UnmarshalJSON(buf []byte) error {
return easyjson.Unmarshal(buf, t)
}
// BackendNode backend node with a friendly name.
type BackendNode struct {
NodeType NodeType `json:"nodeType"` // Node's nodeType.
NodeName string `json:"nodeName"` // Node's nodeName.
BackendNodeID BackendNodeID `json:"backendNodeId"`
}
// PseudoType pseudo element type.
type PseudoType string
// String returns the PseudoType as string value.
func (t PseudoType) String() string {
return string(t)
}
// PseudoType values.
const (
PseudoTypeFirstLine PseudoType = "first-line"
PseudoTypeFirstLetter PseudoType = "first-letter"
PseudoTypeBefore PseudoType = "before"
PseudoTypeAfter PseudoType = "after"
PseudoTypeBackdrop PseudoType = "backdrop"
PseudoTypeSelection PseudoType = "selection"
PseudoTypeFirstLineInherited PseudoType = "first-line-inherited"
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"
)
// MarshalEasyJSON satisfies easyjson.Marshaler.
func (t PseudoType) MarshalEasyJSON(out *jwriter.Writer) {
out.String(string(t))
}
// MarshalJSON satisfies json.Marshaler.
func (t PseudoType) MarshalJSON() ([]byte, error) {
return easyjson.Marshal(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *PseudoType) UnmarshalEasyJSON(in *jlexer.Lexer) {
switch PseudoType(in.String()) {
case PseudoTypeFirstLine:
*t = PseudoTypeFirstLine
case PseudoTypeFirstLetter:
*t = PseudoTypeFirstLetter
case PseudoTypeBefore:
*t = PseudoTypeBefore
case PseudoTypeAfter:
*t = PseudoTypeAfter
case PseudoTypeBackdrop:
*t = PseudoTypeBackdrop
case PseudoTypeSelection:
*t = PseudoTypeSelection
case PseudoTypeFirstLineInherited:
*t = PseudoTypeFirstLineInherited
case PseudoTypeScrollbar:
*t = PseudoTypeScrollbar
case PseudoTypeScrollbarThumb:
*t = PseudoTypeScrollbarThumb
case PseudoTypeScrollbarButton:
*t = PseudoTypeScrollbarButton
case PseudoTypeScrollbarTrack:
*t = PseudoTypeScrollbarTrack
case PseudoTypeScrollbarTrackPiece:
*t = PseudoTypeScrollbarTrackPiece
case PseudoTypeScrollbarCorner:
*t = PseudoTypeScrollbarCorner
case PseudoTypeResizer:
*t = PseudoTypeResizer
case PseudoTypeInputListButton:
*t = PseudoTypeInputListButton
default:
in.AddError(errors.New("unknown PseudoType value"))
}
}
// UnmarshalJSON satisfies json.Unmarshaler.
func (t *PseudoType) UnmarshalJSON(buf []byte) error {
return easyjson.Unmarshal(buf, t)
}
// ShadowRootType shadow root type.
type ShadowRootType string
// String returns the ShadowRootType as string value.
func (t ShadowRootType) String() string {
return string(t)
}
// ShadowRootType values.
const (
ShadowRootTypeUserAgent ShadowRootType = "user-agent"
ShadowRootTypeOpen ShadowRootType = "open"
ShadowRootTypeClosed ShadowRootType = "closed"
)
// MarshalEasyJSON satisfies easyjson.Marshaler.
func (t ShadowRootType) MarshalEasyJSON(out *jwriter.Writer) {
out.String(string(t))
}
// MarshalJSON satisfies json.Marshaler.
func (t ShadowRootType) MarshalJSON() ([]byte, error) {
return easyjson.Marshal(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *ShadowRootType) UnmarshalEasyJSON(in *jlexer.Lexer) {
switch ShadowRootType(in.String()) {
case ShadowRootTypeUserAgent:
*t = ShadowRootTypeUserAgent
case ShadowRootTypeOpen:
*t = ShadowRootTypeOpen
case ShadowRootTypeClosed:
*t = ShadowRootTypeClosed
default:
in.AddError(errors.New("unknown ShadowRootType value"))
}
}
// UnmarshalJSON satisfies json.Unmarshaler.
func (t *ShadowRootType) UnmarshalJSON(buf []byte) error {
return easyjson.Unmarshal(buf, t)
}
// Node DOM interaction is implemented in terms of mirror objects that
// represent the actual DOM nodes. DOMNode is a base node mirror type.
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.
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.
ImportedDocument *Node `json:"importedDocument,omitempty"` // Import document for the HTMLImport links.
DistributedNodes []*BackendNode `json:"distributedNodes,omitempty"` // Distributed nodes for given insertion point.
IsSVG bool `json:"isSVG,omitempty"` // Whether the node is SVG.
Parent *Node `json:"-"` // Parent node.
Invalidated chan struct{} `json:"-"` // Invalidated channel.
State NodeState `json:"-"` // Node state.
sync.RWMutex `json:"-"` // Read write mutex.
}
// AttributeValue returns the named attribute for the node.
func (n *Node) AttributeValue(name string) string {
n.RLock()
defer n.RUnlock()
for i := 0; i < len(n.Attributes); i += 2 {
if n.Attributes[i] == name {
return n.Attributes[i+1]
}
}
return ""
}
// xpath builds the xpath string.
func (n *Node) xpath(stopAtDocument, stopAtID bool) string {
n.RLock()
defer n.RUnlock()
p := ""
pos := ""
id := n.AttributeValue("id")
switch {
case n.Parent == nil:
return n.LocalName
case stopAtDocument && n.NodeType == NodeTypeDocument:
return ""
case stopAtID && id != "":
p = "/"
pos = `[@id='` + id + `']`
case n.Parent != nil:
var i int
var found bool
n.Parent.RLock()
for j := 0; j < len(n.Parent.Children); j++ {
if n.Parent.Children[j].LocalName == n.LocalName {
i++
}
if n.Parent.Children[j].NodeID == n.NodeID {
found = true
break
}
}
n.Parent.RUnlock()
if found {
pos = "[" + strconv.Itoa(i) + "]"
}
p = n.Parent.xpath(stopAtDocument, stopAtID)
}
return p + "/" + n.LocalName + pos
}
// PartialXPathByID returns the partial XPath for the node, stopping at the
// first parent with an id attribute or at nearest parent document node.
func (n *Node) PartialXPathByID() string {
return n.xpath(true, true)
}
// PartialXPath returns the partial XPath for the node, stopping at the nearest
// parent document node.
func (n *Node) PartialXPath() string {
return n.xpath(true, false)
}
// 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 (n *Node) FullXPathByID() string {
return n.xpath(false, true)
}
// FullXPath returns the full XPath for the node, stopping only at the top most
// document root.
func (n *Node) FullXPath() string {
return n.xpath(false, false)
}
// NodeState is the state of a DOM node.
type NodeState uint8
// NodeState enum values.
const (
NodeReady NodeState = 1 << (7 - iota)
NodeVisible
NodeHighlighted
)
// nodeStateNames are the names of the node states.
var nodeStateNames = map[NodeState]string{
NodeReady: "Ready",
NodeVisible: "Visible",
NodeHighlighted: "Highlighted",
}
// String satisfies stringer interface.
func (ns NodeState) String() string {
var s []string
for k, v := range nodeStateNames {
if ns&k != 0 {
s = append(s, v)
}
}
return "[" + strings.Join(s, " ") + "]"
}
// EmptyNodeID is the "non-existent" node id.
const EmptyNodeID = NodeID(0)
// RGBA a structure holding an RGBA color.
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,omitempty"` // The alpha component, in the [0-1] range (default: 1).
}
// NodeType node type.
type NodeType int64
// Int64 returns the NodeType as int64 value.
func (t NodeType) Int64() int64 {
return int64(t)
}
// NodeType values.
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
)
// String returns the NodeType as string value.
func (t NodeType) String() string {
switch t {
case NodeTypeElement:
return "Element"
case NodeTypeAttribute:
return "Attribute"
case NodeTypeText:
return "Text"
case NodeTypeCDATA:
return "CDATA"
case NodeTypeEntityReference:
return "EntityReference"
case NodeTypeEntity:
return "Entity"
case NodeTypeProcessingInstruction:
return "ProcessingInstruction"
case NodeTypeComment:
return "Comment"
case NodeTypeDocument:
return "Document"
case NodeTypeDocumentType:
return "DocumentType"
case NodeTypeDocumentFragment:
return "DocumentFragment"
case NodeTypeNotation:
return "Notation"
}
return fmt.Sprintf("NodeType(%d)", t)
}
// MarshalEasyJSON satisfies easyjson.Marshaler.
func (t NodeType) MarshalEasyJSON(out *jwriter.Writer) {
out.Int64(int64(t))
}
// MarshalJSON satisfies json.Marshaler.
func (t NodeType) MarshalJSON() ([]byte, error) {
return easyjson.Marshal(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *NodeType) UnmarshalEasyJSON(in *jlexer.Lexer) {
switch NodeType(in.Int64()) {
case NodeTypeElement:
*t = NodeTypeElement
case NodeTypeAttribute:
*t = NodeTypeAttribute
case NodeTypeText:
*t = NodeTypeText
case NodeTypeCDATA:
*t = NodeTypeCDATA
case NodeTypeEntityReference:
*t = NodeTypeEntityReference
case NodeTypeEntity:
*t = NodeTypeEntity
case NodeTypeProcessingInstruction:
*t = NodeTypeProcessingInstruction
case NodeTypeComment:
*t = NodeTypeComment
case NodeTypeDocument:
*t = NodeTypeDocument
case NodeTypeDocumentType:
*t = NodeTypeDocumentType
case NodeTypeDocumentFragment:
*t = NodeTypeDocumentFragment
case NodeTypeNotation:
*t = NodeTypeNotation
default:
in.AddError(errors.New("unknown NodeType value"))
}
}
// UnmarshalJSON satisfies json.Unmarshaler.
func (t *NodeType) UnmarshalJSON(buf []byte) error {
return easyjson.Unmarshal(buf, t)
}
// MessageError message error type.
type MessageError struct {
Code int64 `json:"code"` // Error code.
Message string `json:"message"` // Error message.
}
// Error satisfies error interface.
func (e *MessageError) Error() string {
return fmt.Sprintf("%s (%d)", e.Message, e.Code)
}
// Message chrome Debugging Protocol message sent to/read over websocket
// connection.
type Message struct {
ID int64 `json:"id,omitempty"` // Unique message identifier.
Method MethodType `json:"method,omitempty"` // Event or command type.
Params easyjson.RawMessage `json:"params,omitempty"` // Event or command parameters.
Result easyjson.RawMessage `json:"result,omitempty"` // Command return values.
Error *MessageError `json:"error,omitempty"` // Error message.
}
// MethodType chrome Debugging Protocol method type (ie, event and command
// names).
type MethodType string
// String returns the MethodType as string value.
func (t MethodType) String() string {
return string(t)
}
// MethodType values.
const (
CommandAccessibilityGetPartialAXTree MethodType = "Accessibility.getPartialAXTree"
EventAnimationAnimationCanceled MethodType = "Animation.animationCanceled"
EventAnimationAnimationCreated MethodType = "Animation.animationCreated"
EventAnimationAnimationStarted MethodType = "Animation.animationStarted"
CommandAnimationDisable MethodType = "Animation.disable"
CommandAnimationEnable MethodType = "Animation.enable"
CommandAnimationGetCurrentTime MethodType = "Animation.getCurrentTime"
CommandAnimationGetPlaybackRate MethodType = "Animation.getPlaybackRate"
CommandAnimationReleaseAnimations MethodType = "Animation.releaseAnimations"
CommandAnimationResolveAnimation MethodType = "Animation.resolveAnimation"
CommandAnimationSeekAnimations MethodType = "Animation.seekAnimations"
CommandAnimationSetPaused MethodType = "Animation.setPaused"
CommandAnimationSetPlaybackRate MethodType = "Animation.setPlaybackRate"
CommandAnimationSetTiming MethodType = "Animation.setTiming"
EventApplicationCacheApplicationCacheStatusUpdated MethodType = "ApplicationCache.applicationCacheStatusUpdated"
EventApplicationCacheNetworkStateUpdated MethodType = "ApplicationCache.networkStateUpdated"
CommandApplicationCacheEnable MethodType = "ApplicationCache.enable"
CommandApplicationCacheGetApplicationCacheForFrame MethodType = "ApplicationCache.getApplicationCacheForFrame"
CommandApplicationCacheGetFramesWithManifests MethodType = "ApplicationCache.getFramesWithManifests"
CommandApplicationCacheGetManifestForFrame MethodType = "ApplicationCache.getManifestForFrame"
CommandAuditsGetEncodedResponse MethodType = "Audits.getEncodedResponse"
CommandBrowserClose MethodType = "Browser.close"
CommandBrowserGetVersion MethodType = "Browser.getVersion"
CommandBrowserGetWindowBounds MethodType = "Browser.getWindowBounds"
CommandBrowserGetWindowForTarget MethodType = "Browser.getWindowForTarget"
CommandBrowserSetWindowBounds MethodType = "Browser.setWindowBounds"
EventCSSFontsUpdated MethodType = "CSS.fontsUpdated"
EventCSSMediaQueryResultChanged MethodType = "CSS.mediaQueryResultChanged"
EventCSSStyleSheetAdded MethodType = "CSS.styleSheetAdded"
EventCSSStyleSheetChanged MethodType = "CSS.styleSheetChanged"
EventCSSStyleSheetRemoved MethodType = "CSS.styleSheetRemoved"
CommandCSSAddRule MethodType = "CSS.addRule"
CommandCSSCollectClassNames MethodType = "CSS.collectClassNames"
CommandCSSCreateStyleSheet MethodType = "CSS.createStyleSheet"
CommandCSSDisable MethodType = "CSS.disable"
CommandCSSEnable MethodType = "CSS.enable"
CommandCSSForcePseudoState MethodType = "CSS.forcePseudoState"
CommandCSSGetBackgroundColors MethodType = "CSS.getBackgroundColors"
CommandCSSGetComputedStyleForNode MethodType = "CSS.getComputedStyleForNode"
CommandCSSGetInlineStylesForNode MethodType = "CSS.getInlineStylesForNode"
CommandCSSGetMatchedStylesForNode MethodType = "CSS.getMatchedStylesForNode"
CommandCSSGetMediaQueries MethodType = "CSS.getMediaQueries"
CommandCSSGetPlatformFontsForNode MethodType = "CSS.getPlatformFontsForNode"
CommandCSSGetStyleSheetText MethodType = "CSS.getStyleSheetText"
CommandCSSSetEffectivePropertyValueForNode MethodType = "CSS.setEffectivePropertyValueForNode"
CommandCSSSetKeyframeKey MethodType = "CSS.setKeyframeKey"
CommandCSSSetMediaText MethodType = "CSS.setMediaText"
CommandCSSSetRuleSelector MethodType = "CSS.setRuleSelector"
CommandCSSSetStyleSheetText MethodType = "CSS.setStyleSheetText"
CommandCSSSetStyleTexts MethodType = "CSS.setStyleTexts"
CommandCSSStartRuleUsageTracking MethodType = "CSS.startRuleUsageTracking"
CommandCSSStopRuleUsageTracking MethodType = "CSS.stopRuleUsageTracking"
CommandCSSTakeCoverageDelta MethodType = "CSS.takeCoverageDelta"
CommandCacheStorageDeleteCache MethodType = "CacheStorage.deleteCache"
CommandCacheStorageDeleteEntry MethodType = "CacheStorage.deleteEntry"
CommandCacheStorageRequestCacheNames MethodType = "CacheStorage.requestCacheNames"
CommandCacheStorageRequestCachedResponse MethodType = "CacheStorage.requestCachedResponse"
CommandCacheStorageRequestEntries MethodType = "CacheStorage.requestEntries"
EventDOMAttributeModified MethodType = "DOM.attributeModified"
EventDOMAttributeRemoved MethodType = "DOM.attributeRemoved"
EventDOMCharacterDataModified MethodType = "DOM.characterDataModified"
EventDOMChildNodeCountUpdated MethodType = "DOM.childNodeCountUpdated"
EventDOMChildNodeInserted MethodType = "DOM.childNodeInserted"
EventDOMChildNodeRemoved MethodType = "DOM.childNodeRemoved"
EventDOMDistributedNodesUpdated MethodType = "DOM.distributedNodesUpdated"
EventDOMDocumentUpdated MethodType = "DOM.documentUpdated"
EventDOMInlineStyleInvalidated MethodType = "DOM.inlineStyleInvalidated"
EventDOMPseudoElementAdded MethodType = "DOM.pseudoElementAdded"
EventDOMPseudoElementRemoved MethodType = "DOM.pseudoElementRemoved"
EventDOMSetChildNodes MethodType = "DOM.setChildNodes"
EventDOMShadowRootPopped MethodType = "DOM.shadowRootPopped"
EventDOMShadowRootPushed MethodType = "DOM.shadowRootPushed"
CommandDOMCollectClassNamesFromSubtree MethodType = "DOM.collectClassNamesFromSubtree"
CommandDOMCopyTo MethodType = "DOM.copyTo"
CommandDOMDescribeNode MethodType = "DOM.describeNode"
CommandDOMDisable MethodType = "DOM.disable"
CommandDOMDiscardSearchResults MethodType = "DOM.discardSearchResults"
CommandDOMEnable MethodType = "DOM.enable"
CommandDOMFocus MethodType = "DOM.focus"
CommandDOMGetAttributes MethodType = "DOM.getAttributes"
CommandDOMGetBoxModel MethodType = "DOM.getBoxModel"
CommandDOMGetDocument MethodType = "DOM.getDocument"
CommandDOMGetFlattenedDocument MethodType = "DOM.getFlattenedDocument"
CommandDOMGetNodeForLocation MethodType = "DOM.getNodeForLocation"
CommandDOMGetOuterHTML MethodType = "DOM.getOuterHTML"
CommandDOMGetRelayoutBoundary MethodType = "DOM.getRelayoutBoundary"
CommandDOMGetSearchResults MethodType = "DOM.getSearchResults"
CommandDOMMarkUndoableState MethodType = "DOM.markUndoableState"
CommandDOMMoveTo MethodType = "DOM.moveTo"
CommandDOMPerformSearch MethodType = "DOM.performSearch"
CommandDOMPushNodeByPathToFrontend MethodType = "DOM.pushNodeByPathToFrontend"
CommandDOMPushNodesByBackendIdsToFrontend MethodType = "DOM.pushNodesByBackendIdsToFrontend"
CommandDOMQuerySelector MethodType = "DOM.querySelector"
CommandDOMQuerySelectorAll MethodType = "DOM.querySelectorAll"
CommandDOMRedo MethodType = "DOM.redo"
CommandDOMRemoveAttribute MethodType = "DOM.removeAttribute"
CommandDOMRemoveNode MethodType = "DOM.removeNode"
CommandDOMRequestChildNodes MethodType = "DOM.requestChildNodes"
CommandDOMRequestNode MethodType = "DOM.requestNode"
CommandDOMResolveNode MethodType = "DOM.resolveNode"
CommandDOMSetAttributeValue MethodType = "DOM.setAttributeValue"
CommandDOMSetAttributesAsText MethodType = "DOM.setAttributesAsText"
CommandDOMSetFileInputFiles MethodType = "DOM.setFileInputFiles"
CommandDOMSetInspectedNode MethodType = "DOM.setInspectedNode"
CommandDOMSetNodeName MethodType = "DOM.setNodeName"
CommandDOMSetNodeValue MethodType = "DOM.setNodeValue"
CommandDOMSetOuterHTML MethodType = "DOM.setOuterHTML"
CommandDOMUndo MethodType = "DOM.undo"
CommandDOMDebuggerGetEventListeners MethodType = "DOMDebugger.getEventListeners"
CommandDOMDebuggerRemoveDOMBreakpoint MethodType = "DOMDebugger.removeDOMBreakpoint"
CommandDOMDebuggerRemoveEventListenerBreakpoint MethodType = "DOMDebugger.removeEventListenerBreakpoint"
CommandDOMDebuggerRemoveInstrumentationBreakpoint MethodType = "DOMDebugger.removeInstrumentationBreakpoint"
CommandDOMDebuggerRemoveXHRBreakpoint MethodType = "DOMDebugger.removeXHRBreakpoint"
CommandDOMDebuggerSetDOMBreakpoint MethodType = "DOMDebugger.setDOMBreakpoint"
CommandDOMDebuggerSetEventListenerBreakpoint MethodType = "DOMDebugger.setEventListenerBreakpoint"
CommandDOMDebuggerSetInstrumentationBreakpoint MethodType = "DOMDebugger.setInstrumentationBreakpoint"
CommandDOMDebuggerSetXHRBreakpoint MethodType = "DOMDebugger.setXHRBreakpoint"
CommandDOMSnapshotGetSnapshot MethodType = "DOMSnapshot.getSnapshot"
EventDOMStorageDomStorageItemAdded MethodType = "DOMStorage.domStorageItemAdded"
EventDOMStorageDomStorageItemRemoved MethodType = "DOMStorage.domStorageItemRemoved"
EventDOMStorageDomStorageItemUpdated MethodType = "DOMStorage.domStorageItemUpdated"
EventDOMStorageDomStorageItemsCleared MethodType = "DOMStorage.domStorageItemsCleared"
CommandDOMStorageClear MethodType = "DOMStorage.clear"
CommandDOMStorageDisable MethodType = "DOMStorage.disable"
CommandDOMStorageEnable MethodType = "DOMStorage.enable"
CommandDOMStorageGetDOMStorageItems MethodType = "DOMStorage.getDOMStorageItems"
CommandDOMStorageRemoveDOMStorageItem MethodType = "DOMStorage.removeDOMStorageItem"
CommandDOMStorageSetDOMStorageItem MethodType = "DOMStorage.setDOMStorageItem"
EventDatabaseAddDatabase MethodType = "Database.addDatabase"
CommandDatabaseDisable MethodType = "Database.disable"
CommandDatabaseEnable MethodType = "Database.enable"
CommandDatabaseExecuteSQL MethodType = "Database.executeSQL"
CommandDatabaseGetDatabaseTableNames MethodType = "Database.getDatabaseTableNames"
CommandDeviceOrientationClearDeviceOrientationOverride MethodType = "DeviceOrientation.clearDeviceOrientationOverride"
CommandDeviceOrientationSetDeviceOrientationOverride MethodType = "DeviceOrientation.setDeviceOrientationOverride"
EventEmulationVirtualTimeAdvanced MethodType = "Emulation.virtualTimeAdvanced"
EventEmulationVirtualTimeBudgetExpired MethodType = "Emulation.virtualTimeBudgetExpired"
EventEmulationVirtualTimePaused MethodType = "Emulation.virtualTimePaused"
CommandEmulationCanEmulate MethodType = "Emulation.canEmulate"
CommandEmulationClearDeviceMetricsOverride MethodType = "Emulation.clearDeviceMetricsOverride"
CommandEmulationClearGeolocationOverride MethodType = "Emulation.clearGeolocationOverride"
CommandEmulationResetPageScaleFactor MethodType = "Emulation.resetPageScaleFactor"
CommandEmulationSetCPUThrottlingRate MethodType = "Emulation.setCPUThrottlingRate"
CommandEmulationSetDefaultBackgroundColorOverride MethodType = "Emulation.setDefaultBackgroundColorOverride"
CommandEmulationSetDeviceMetricsOverride MethodType = "Emulation.setDeviceMetricsOverride"
CommandEmulationSetEmitTouchEventsForMouse MethodType = "Emulation.setEmitTouchEventsForMouse"
CommandEmulationSetEmulatedMedia MethodType = "Emulation.setEmulatedMedia"
CommandEmulationSetGeolocationOverride MethodType = "Emulation.setGeolocationOverride"
CommandEmulationSetNavigatorOverrides MethodType = "Emulation.setNavigatorOverrides"
CommandEmulationSetPageScaleFactor MethodType = "Emulation.setPageScaleFactor"
CommandEmulationSetScriptExecutionDisabled MethodType = "Emulation.setScriptExecutionDisabled"
CommandEmulationSetTouchEmulationEnabled MethodType = "Emulation.setTouchEmulationEnabled"
CommandEmulationSetVirtualTimePolicy MethodType = "Emulation.setVirtualTimePolicy"
EventHeadlessExperimentalMainFrameReadyForScreenshots MethodType = "HeadlessExperimental.mainFrameReadyForScreenshots"
EventHeadlessExperimentalNeedsBeginFramesChanged MethodType = "HeadlessExperimental.needsBeginFramesChanged"
CommandHeadlessExperimentalBeginFrame MethodType = "HeadlessExperimental.beginFrame"
CommandHeadlessExperimentalDisable MethodType = "HeadlessExperimental.disable"
CommandHeadlessExperimentalEnable MethodType = "HeadlessExperimental.enable"
CommandIOClose MethodType = "IO.close"
CommandIORead MethodType = "IO.read"
CommandIOResolveBlob MethodType = "IO.resolveBlob"
CommandIndexedDBClearObjectStore MethodType = "IndexedDB.clearObjectStore"
CommandIndexedDBDeleteDatabase MethodType = "IndexedDB.deleteDatabase"
CommandIndexedDBDeleteObjectStoreEntries MethodType = "IndexedDB.deleteObjectStoreEntries"
CommandIndexedDBDisable MethodType = "IndexedDB.disable"
CommandIndexedDBEnable MethodType = "IndexedDB.enable"
CommandIndexedDBRequestData MethodType = "IndexedDB.requestData"
CommandIndexedDBRequestDatabase MethodType = "IndexedDB.requestDatabase"
CommandIndexedDBRequestDatabaseNames MethodType = "IndexedDB.requestDatabaseNames"
CommandInputDispatchKeyEvent MethodType = "Input.dispatchKeyEvent"
CommandInputDispatchMouseEvent MethodType = "Input.dispatchMouseEvent"
CommandInputDispatchTouchEvent MethodType = "Input.dispatchTouchEvent"
CommandInputEmulateTouchFromMouseEvent MethodType = "Input.emulateTouchFromMouseEvent"
CommandInputSetIgnoreInputEvents MethodType = "Input.setIgnoreInputEvents"
CommandInputSynthesizePinchGesture MethodType = "Input.synthesizePinchGesture"
CommandInputSynthesizeScrollGesture MethodType = "Input.synthesizeScrollGesture"
CommandInputSynthesizeTapGesture MethodType = "Input.synthesizeTapGesture"
EventInspectorDetached MethodType = "Inspector.detached"
EventInspectorTargetCrashed MethodType = "Inspector.targetCrashed"
CommandInspectorDisable MethodType = "Inspector.disable"
CommandInspectorEnable MethodType = "Inspector.enable"
EventLayerTreeLayerPainted MethodType = "LayerTree.layerPainted"
EventLayerTreeLayerTreeDidChange MethodType = "LayerTree.layerTreeDidChange"
CommandLayerTreeCompositingReasons MethodType = "LayerTree.compositingReasons"
CommandLayerTreeDisable MethodType = "LayerTree.disable"
CommandLayerTreeEnable MethodType = "LayerTree.enable"
CommandLayerTreeLoadSnapshot MethodType = "LayerTree.loadSnapshot"
CommandLayerTreeMakeSnapshot MethodType = "LayerTree.makeSnapshot"
CommandLayerTreeProfileSnapshot MethodType = "LayerTree.profileSnapshot"
CommandLayerTreeReleaseSnapshot MethodType = "LayerTree.releaseSnapshot"
CommandLayerTreeReplaySnapshot MethodType = "LayerTree.replaySnapshot"
CommandLayerTreeSnapshotCommandLog MethodType = "LayerTree.snapshotCommandLog"
EventLogEntryAdded MethodType = "Log.entryAdded"
CommandLogClear MethodType = "Log.clear"
CommandLogDisable MethodType = "Log.disable"
CommandLogEnable MethodType = "Log.enable"
CommandLogStartViolationsReport MethodType = "Log.startViolationsReport"
CommandLogStopViolationsReport MethodType = "Log.stopViolationsReport"
CommandMemoryGetDOMCounters MethodType = "Memory.getDOMCounters"
CommandMemoryPrepareForLeakDetection MethodType = "Memory.prepareForLeakDetection"
CommandMemorySetPressureNotificationsSuppressed MethodType = "Memory.setPressureNotificationsSuppressed"
CommandMemorySimulatePressureNotification MethodType = "Memory.simulatePressureNotification"
EventNetworkDataReceived MethodType = "Network.dataReceived"
EventNetworkEventSourceMessageReceived MethodType = "Network.eventSourceMessageReceived"
EventNetworkLoadingFailed MethodType = "Network.loadingFailed"
EventNetworkLoadingFinished MethodType = "Network.loadingFinished"
EventNetworkRequestIntercepted MethodType = "Network.requestIntercepted"
EventNetworkRequestServedFromCache MethodType = "Network.requestServedFromCache"
EventNetworkRequestWillBeSent MethodType = "Network.requestWillBeSent"
EventNetworkResourceChangedPriority MethodType = "Network.resourceChangedPriority"
EventNetworkResponseReceived MethodType = "Network.responseReceived"
EventNetworkWebSocketClosed MethodType = "Network.webSocketClosed"
EventNetworkWebSocketCreated MethodType = "Network.webSocketCreated"
EventNetworkWebSocketFrameError MethodType = "Network.webSocketFrameError"
EventNetworkWebSocketFrameReceived MethodType = "Network.webSocketFrameReceived"
EventNetworkWebSocketFrameSent MethodType = "Network.webSocketFrameSent"
EventNetworkWebSocketHandshakeResponseReceived MethodType = "Network.webSocketHandshakeResponseReceived"
EventNetworkWebSocketWillSendHandshakeRequest MethodType = "Network.webSocketWillSendHandshakeRequest"
CommandNetworkClearBrowserCache MethodType = "Network.clearBrowserCache"
CommandNetworkClearBrowserCookies MethodType = "Network.clearBrowserCookies"
CommandNetworkContinueInterceptedRequest MethodType = "Network.continueInterceptedRequest"
CommandNetworkDeleteCookies MethodType = "Network.deleteCookies"
CommandNetworkDisable MethodType = "Network.disable"
CommandNetworkEmulateNetworkConditions MethodType = "Network.emulateNetworkConditions"
CommandNetworkEnable MethodType = "Network.enable"
CommandNetworkGetAllCookies MethodType = "Network.getAllCookies"
CommandNetworkGetCertificate MethodType = "Network.getCertificate"
CommandNetworkGetCookies MethodType = "Network.getCookies"
CommandNetworkGetResponseBody MethodType = "Network.getResponseBody"
CommandNetworkGetResponseBodyForInterception MethodType = "Network.getResponseBodyForInterception"
CommandNetworkReplayXHR MethodType = "Network.replayXHR"
CommandNetworkSearchInResponseBody MethodType = "Network.searchInResponseBody"
CommandNetworkSetBlockedURLS MethodType = "Network.setBlockedURLs"
CommandNetworkSetBypassServiceWorker MethodType = "Network.setBypassServiceWorker"
CommandNetworkSetCacheDisabled MethodType = "Network.setCacheDisabled"
CommandNetworkSetCookie MethodType = "Network.setCookie"
CommandNetworkSetCookies MethodType = "Network.setCookies"
CommandNetworkSetDataSizeLimitsForTest MethodType = "Network.setDataSizeLimitsForTest"
CommandNetworkSetExtraHTTPHeaders MethodType = "Network.setExtraHTTPHeaders"
CommandNetworkSetRequestInterception MethodType = "Network.setRequestInterception"
CommandNetworkSetUserAgentOverride MethodType = "Network.setUserAgentOverride"
EventOverlayInspectNodeRequested MethodType = "Overlay.inspectNodeRequested"
EventOverlayNodeHighlightRequested MethodType = "Overlay.nodeHighlightRequested"
EventOverlayScreenshotRequested MethodType = "Overlay.screenshotRequested"
CommandOverlayDisable MethodType = "Overlay.disable"
CommandOverlayEnable MethodType = "Overlay.enable"
CommandOverlayGetHighlightObjectForTest MethodType = "Overlay.getHighlightObjectForTest"
CommandOverlayHideHighlight MethodType = "Overlay.hideHighlight"
CommandOverlayHighlightFrame MethodType = "Overlay.highlightFrame"
CommandOverlayHighlightNode MethodType = "Overlay.highlightNode"
CommandOverlayHighlightQuad MethodType = "Overlay.highlightQuad"
CommandOverlayHighlightRect MethodType = "Overlay.highlightRect"
CommandOverlaySetInspectMode MethodType = "Overlay.setInspectMode"
CommandOverlaySetPausedInDebuggerMessage MethodType = "Overlay.setPausedInDebuggerMessage"
CommandOverlaySetShowDebugBorders MethodType = "Overlay.setShowDebugBorders"
CommandOverlaySetShowFPSCounter MethodType = "Overlay.setShowFPSCounter"
CommandOverlaySetShowPaintRects MethodType = "Overlay.setShowPaintRects"
CommandOverlaySetShowScrollBottleneckRects MethodType = "Overlay.setShowScrollBottleneckRects"
CommandOverlaySetShowViewportSizeOnResize MethodType = "Overlay.setShowViewportSizeOnResize"
CommandOverlaySetSuspended MethodType = "Overlay.setSuspended"
EventPageDomContentEventFired MethodType = "Page.domContentEventFired"
EventPageFrameAttached MethodType = "Page.frameAttached"
EventPageFrameClearedScheduledNavigation MethodType = "Page.frameClearedScheduledNavigation"
EventPageFrameDetached MethodType = "Page.frameDetached"
EventPageFrameNavigated MethodType = "Page.frameNavigated"
EventPageFrameResized MethodType = "Page.frameResized"
EventPageFrameScheduledNavigation MethodType = "Page.frameScheduledNavigation"
EventPageFrameStartedLoading MethodType = "Page.frameStartedLoading"
EventPageFrameStoppedLoading MethodType = "Page.frameStoppedLoading"
EventPageInterstitialHidden MethodType = "Page.interstitialHidden"
EventPageInterstitialShown MethodType = "Page.interstitialShown"
EventPageJavascriptDialogClosed MethodType = "Page.javascriptDialogClosed"
EventPageJavascriptDialogOpening MethodType = "Page.javascriptDialogOpening"
EventPageLifecycleEvent MethodType = "Page.lifecycleEvent"
EventPageLoadEventFired MethodType = "Page.loadEventFired"
EventPageScreencastFrame MethodType = "Page.screencastFrame"
EventPageScreencastVisibilityChanged MethodType = "Page.screencastVisibilityChanged"
EventPageWindowOpen MethodType = "Page.windowOpen"
CommandPageAddScriptToEvaluateOnNewDocument MethodType = "Page.addScriptToEvaluateOnNewDocument"
CommandPageBringToFront MethodType = "Page.bringToFront"
CommandPageCaptureScreenshot MethodType = "Page.captureScreenshot"
CommandPageCreateIsolatedWorld MethodType = "Page.createIsolatedWorld"
CommandPageDisable MethodType = "Page.disable"
CommandPageEnable MethodType = "Page.enable"
CommandPageGetAppManifest MethodType = "Page.getAppManifest"
CommandPageGetFrameTree MethodType = "Page.getFrameTree"
CommandPageGetLayoutMetrics MethodType = "Page.getLayoutMetrics"
CommandPageGetNavigationHistory MethodType = "Page.getNavigationHistory"
CommandPageGetResourceContent MethodType = "Page.getResourceContent"
CommandPageGetResourceTree MethodType = "Page.getResourceTree"
CommandPageHandleJavaScriptDialog MethodType = "Page.handleJavaScriptDialog"
CommandPageNavigate MethodType = "Page.navigate"
CommandPageNavigateToHistoryEntry MethodType = "Page.navigateToHistoryEntry"
CommandPagePrintToPDF MethodType = "Page.printToPDF"
CommandPageReload MethodType = "Page.reload"
CommandPageRemoveScriptToEvaluateOnNewDocument MethodType = "Page.removeScriptToEvaluateOnNewDocument"
CommandPageRequestAppBanner MethodType = "Page.requestAppBanner"
CommandPageScreencastFrameAck MethodType = "Page.screencastFrameAck"
CommandPageSearchInResource MethodType = "Page.searchInResource"
CommandPageSetAdBlockingEnabled MethodType = "Page.setAdBlockingEnabled"
CommandPageSetAutoAttachToCreatedPages MethodType = "Page.setAutoAttachToCreatedPages"
CommandPageSetDocumentContent MethodType = "Page.setDocumentContent"
CommandPageSetDownloadBehavior MethodType = "Page.setDownloadBehavior"
CommandPageSetLifecycleEventsEnabled MethodType = "Page.setLifecycleEventsEnabled"
CommandPageStartScreencast MethodType = "Page.startScreencast"
CommandPageStopLoading MethodType = "Page.stopLoading"
CommandPageStopScreencast MethodType = "Page.stopScreencast"
EventPerformanceMetrics MethodType = "Performance.metrics"
CommandPerformanceDisable MethodType = "Performance.disable"
CommandPerformanceEnable MethodType = "Performance.enable"
CommandPerformanceGetMetrics MethodType = "Performance.getMetrics"
EventSecurityCertificateError MethodType = "Security.certificateError"
EventSecuritySecurityStateChanged MethodType = "Security.securityStateChanged"
CommandSecurityDisable MethodType = "Security.disable"
CommandSecurityEnable MethodType = "Security.enable"
CommandSecurityHandleCertificateError MethodType = "Security.handleCertificateError"
CommandSecuritySetOverrideCertificateErrors MethodType = "Security.setOverrideCertificateErrors"
EventServiceWorkerWorkerErrorReported MethodType = "ServiceWorker.workerErrorReported"
EventServiceWorkerWorkerRegistrationUpdated MethodType = "ServiceWorker.workerRegistrationUpdated"
EventServiceWorkerWorkerVersionUpdated MethodType = "ServiceWorker.workerVersionUpdated"
CommandServiceWorkerDeliverPushMessage MethodType = "ServiceWorker.deliverPushMessage"
CommandServiceWorkerDisable MethodType = "ServiceWorker.disable"
CommandServiceWorkerDispatchSyncEvent MethodType = "ServiceWorker.dispatchSyncEvent"
CommandServiceWorkerEnable MethodType = "ServiceWorker.enable"
CommandServiceWorkerInspectWorker MethodType = "ServiceWorker.inspectWorker"
CommandServiceWorkerSetForceUpdateOnPageLoad MethodType = "ServiceWorker.setForceUpdateOnPageLoad"
CommandServiceWorkerSkipWaiting MethodType = "ServiceWorker.skipWaiting"
CommandServiceWorkerStartWorker MethodType = "ServiceWorker.startWorker"
CommandServiceWorkerStopAllWorkers MethodType = "ServiceWorker.stopAllWorkers"
CommandServiceWorkerStopWorker MethodType = "ServiceWorker.stopWorker"
CommandServiceWorkerUnregister MethodType = "ServiceWorker.unregister"
CommandServiceWorkerUpdateRegistration MethodType = "ServiceWorker.updateRegistration"
EventStorageCacheStorageContentUpdated MethodType = "Storage.cacheStorageContentUpdated"
EventStorageCacheStorageListUpdated MethodType = "Storage.cacheStorageListUpdated"
EventStorageIndexedDBContentUpdated MethodType = "Storage.indexedDBContentUpdated"
EventStorageIndexedDBListUpdated MethodType = "Storage.indexedDBListUpdated"
CommandStorageClearDataForOrigin MethodType = "Storage.clearDataForOrigin"
CommandStorageGetUsageAndQuota MethodType = "Storage.getUsageAndQuota"
CommandStorageTrackCacheStorageForOrigin MethodType = "Storage.trackCacheStorageForOrigin"
CommandStorageTrackIndexedDBForOrigin MethodType = "Storage.trackIndexedDBForOrigin"
CommandStorageUntrackCacheStorageForOrigin MethodType = "Storage.untrackCacheStorageForOrigin"
CommandStorageUntrackIndexedDBForOrigin MethodType = "Storage.untrackIndexedDBForOrigin"
CommandSystemInfoGetInfo MethodType = "SystemInfo.getInfo"
EventTargetAttachedToTarget MethodType = "Target.attachedToTarget"
EventTargetDetachedFromTarget MethodType = "Target.detachedFromTarget"
EventTargetReceivedMessageFromTarget MethodType = "Target.receivedMessageFromTarget"
EventTargetTargetCreated MethodType = "Target.targetCreated"
EventTargetTargetDestroyed MethodType = "Target.targetDestroyed"
EventTargetTargetInfoChanged MethodType = "Target.targetInfoChanged"
CommandTargetActivateTarget MethodType = "Target.activateTarget"
CommandTargetAttachToTarget MethodType = "Target.attachToTarget"
CommandTargetCloseTarget MethodType = "Target.closeTarget"
CommandTargetCreateBrowserContext MethodType = "Target.createBrowserContext"
CommandTargetCreateTarget MethodType = "Target.createTarget"
CommandTargetDetachFromTarget MethodType = "Target.detachFromTarget"
CommandTargetDisposeBrowserContext MethodType = "Target.disposeBrowserContext"
CommandTargetGetTargetInfo MethodType = "Target.getTargetInfo"
CommandTargetGetTargets MethodType = "Target.getTargets"
CommandTargetSendMessageToTarget MethodType = "Target.sendMessageToTarget"
CommandTargetSetAttachToFrames MethodType = "Target.setAttachToFrames"
CommandTargetSetAutoAttach MethodType = "Target.setAutoAttach"
CommandTargetSetDiscoverTargets MethodType = "Target.setDiscoverTargets"
CommandTargetSetRemoteLocations MethodType = "Target.setRemoteLocations"
EventTetheringAccepted MethodType = "Tethering.accepted"
CommandTetheringBind MethodType = "Tethering.bind"
CommandTetheringUnbind MethodType = "Tethering.unbind"
EventTracingBufferUsage MethodType = "Tracing.bufferUsage"
EventTracingDataCollected MethodType = "Tracing.dataCollected"
EventTracingTracingComplete MethodType = "Tracing.tracingComplete"
CommandTracingEnd MethodType = "Tracing.end"
CommandTracingGetCategories MethodType = "Tracing.getCategories"
CommandTracingRecordClockSyncMarker MethodType = "Tracing.recordClockSyncMarker"
CommandTracingRequestMemoryDump MethodType = "Tracing.requestMemoryDump"
CommandTracingStart MethodType = "Tracing.start"
EventDebuggerBreakpointResolved MethodType = "Debugger.breakpointResolved"
EventDebuggerPaused MethodType = "Debugger.paused"
EventDebuggerResumed MethodType = "Debugger.resumed"
EventDebuggerScriptFailedToParse MethodType = "Debugger.scriptFailedToParse"
EventDebuggerScriptParsed MethodType = "Debugger.scriptParsed"
CommandDebuggerContinueToLocation MethodType = "Debugger.continueToLocation"
CommandDebuggerDisable MethodType = "Debugger.disable"
CommandDebuggerEnable MethodType = "Debugger.enable"
CommandDebuggerEvaluateOnCallFrame MethodType = "Debugger.evaluateOnCallFrame"
CommandDebuggerGetPossibleBreakpoints MethodType = "Debugger.getPossibleBreakpoints"
CommandDebuggerGetScriptSource MethodType = "Debugger.getScriptSource"
CommandDebuggerGetStackTrace MethodType = "Debugger.getStackTrace"
CommandDebuggerPause MethodType = "Debugger.pause"
CommandDebuggerPauseOnAsyncCall MethodType = "Debugger.pauseOnAsyncCall"
CommandDebuggerRemoveBreakpoint MethodType = "Debugger.removeBreakpoint"
CommandDebuggerRestartFrame MethodType = "Debugger.restartFrame"
CommandDebuggerResume MethodType = "Debugger.resume"
CommandDebuggerScheduleStepIntoAsync MethodType = "Debugger.scheduleStepIntoAsync"
CommandDebuggerSearchInContent MethodType = "Debugger.searchInContent"
CommandDebuggerSetAsyncCallStackDepth MethodType = "Debugger.setAsyncCallStackDepth"
CommandDebuggerSetBlackboxPatterns MethodType = "Debugger.setBlackboxPatterns"
CommandDebuggerSetBlackboxedRanges MethodType = "Debugger.setBlackboxedRanges"
CommandDebuggerSetBreakpoint MethodType = "Debugger.setBreakpoint"
CommandDebuggerSetBreakpointByURL MethodType = "Debugger.setBreakpointByUrl"
CommandDebuggerSetBreakpointsActive MethodType = "Debugger.setBreakpointsActive"
CommandDebuggerSetPauseOnExceptions MethodType = "Debugger.setPauseOnExceptions"
CommandDebuggerSetReturnValue MethodType = "Debugger.setReturnValue"
CommandDebuggerSetScriptSource MethodType = "Debugger.setScriptSource"
CommandDebuggerSetSkipAllPauses MethodType = "Debugger.setSkipAllPauses"
CommandDebuggerSetVariableValue MethodType = "Debugger.setVariableValue"
CommandDebuggerStepInto MethodType = "Debugger.stepInto"
CommandDebuggerStepOut MethodType = "Debugger.stepOut"
CommandDebuggerStepOver MethodType = "Debugger.stepOver"
EventHeapProfilerAddHeapSnapshotChunk MethodType = "HeapProfiler.addHeapSnapshotChunk"
EventHeapProfilerHeapStatsUpdate MethodType = "HeapProfiler.heapStatsUpdate"
EventHeapProfilerLastSeenObjectID MethodType = "HeapProfiler.lastSeenObjectId"
EventHeapProfilerReportHeapSnapshotProgress MethodType = "HeapProfiler.reportHeapSnapshotProgress"
EventHeapProfilerResetProfiles MethodType = "HeapProfiler.resetProfiles"
CommandHeapProfilerAddInspectedHeapObject MethodType = "HeapProfiler.addInspectedHeapObject"
CommandHeapProfilerCollectGarbage MethodType = "HeapProfiler.collectGarbage"
CommandHeapProfilerDisable MethodType = "HeapProfiler.disable"
CommandHeapProfilerEnable MethodType = "HeapProfiler.enable"
CommandHeapProfilerGetHeapObjectID MethodType = "HeapProfiler.getHeapObjectId"
CommandHeapProfilerGetObjectByHeapObjectID MethodType = "HeapProfiler.getObjectByHeapObjectId"
CommandHeapProfilerGetSamplingProfile MethodType = "HeapProfiler.getSamplingProfile"
CommandHeapProfilerStartSampling MethodType = "HeapProfiler.startSampling"
CommandHeapProfilerStartTrackingHeapObjects MethodType = "HeapProfiler.startTrackingHeapObjects"
CommandHeapProfilerStopSampling MethodType = "HeapProfiler.stopSampling"
CommandHeapProfilerStopTrackingHeapObjects MethodType = "HeapProfiler.stopTrackingHeapObjects"
CommandHeapProfilerTakeHeapSnapshot MethodType = "HeapProfiler.takeHeapSnapshot"
EventProfilerConsoleProfileFinished MethodType = "Profiler.consoleProfileFinished"
EventProfilerConsoleProfileStarted MethodType = "Profiler.consoleProfileStarted"
CommandProfilerDisable MethodType = "Profiler.disable"
CommandProfilerEnable MethodType = "Profiler.enable"
CommandProfilerGetBestEffortCoverage MethodType = "Profiler.getBestEffortCoverage"
CommandProfilerSetSamplingInterval MethodType = "Profiler.setSamplingInterval"
CommandProfilerStart MethodType = "Profiler.start"
CommandProfilerStartPreciseCoverage MethodType = "Profiler.startPreciseCoverage"
CommandProfilerStartTypeProfile MethodType = "Profiler.startTypeProfile"
CommandProfilerStop MethodType = "Profiler.stop"
CommandProfilerStopPreciseCoverage MethodType = "Profiler.stopPreciseCoverage"
CommandProfilerStopTypeProfile MethodType = "Profiler.stopTypeProfile"
CommandProfilerTakePreciseCoverage MethodType = "Profiler.takePreciseCoverage"
CommandProfilerTakeTypeProfile MethodType = "Profiler.takeTypeProfile"
EventRuntimeConsoleAPICalled MethodType = "Runtime.consoleAPICalled"
EventRuntimeExceptionRevoked MethodType = "Runtime.exceptionRevoked"
EventRuntimeExceptionThrown MethodType = "Runtime.exceptionThrown"
EventRuntimeExecutionContextCreated MethodType = "Runtime.executionContextCreated"
EventRuntimeExecutionContextDestroyed MethodType = "Runtime.executionContextDestroyed"
EventRuntimeExecutionContextsCleared MethodType = "Runtime.executionContextsCleared"
EventRuntimeInspectRequested MethodType = "Runtime.inspectRequested"
CommandRuntimeAwaitPromise MethodType = "Runtime.awaitPromise"
CommandRuntimeCallFunctionOn MethodType = "Runtime.callFunctionOn"
CommandRuntimeCompileScript MethodType = "Runtime.compileScript"
CommandRuntimeDisable MethodType = "Runtime.disable"
CommandRuntimeDiscardConsoleEntries MethodType = "Runtime.discardConsoleEntries"
CommandRuntimeEnable MethodType = "Runtime.enable"
CommandRuntimeEvaluate MethodType = "Runtime.evaluate"
CommandRuntimeGetProperties MethodType = "Runtime.getProperties"
CommandRuntimeGlobalLexicalScopeNames MethodType = "Runtime.globalLexicalScopeNames"
CommandRuntimeQueryObjects MethodType = "Runtime.queryObjects"
CommandRuntimeReleaseObject MethodType = "Runtime.releaseObject"
CommandRuntimeReleaseObjectGroup MethodType = "Runtime.releaseObjectGroup"
CommandRuntimeRunIfWaitingForDebugger MethodType = "Runtime.runIfWaitingForDebugger"
CommandRuntimeRunScript MethodType = "Runtime.runScript"
CommandRuntimeSetCustomObjectFormatterEnabled MethodType = "Runtime.setCustomObjectFormatterEnabled"
)
// MarshalEasyJSON satisfies easyjson.Marshaler.
func (t MethodType) MarshalEasyJSON(out *jwriter.Writer) {
out.String(string(t))
}
// MarshalJSON satisfies json.Marshaler.
func (t MethodType) MarshalJSON() ([]byte, error) {
return easyjson.Marshal(t)
}
// UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *MethodType) UnmarshalEasyJSON(in *jlexer.Lexer) {
switch MethodType(in.String()) {
case CommandAccessibilityGetPartialAXTree:
*t = CommandAccessibilityGetPartialAXTree
case EventAnimationAnimationCanceled:
*t = EventAnimationAnimationCanceled
case EventAnimationAnimationCreated:
*t = EventAnimationAnimationCreated
case EventAnimationAnimationStarted:
*t = EventAnimationAnimationStarted
case CommandAnimationDisable:
*t = CommandAnimationDisable
case CommandAnimationEnable:
*t = CommandAnimationEnable
case CommandAnimationGetCurrentTime:
*t = CommandAnimationGetCurrentTime
case CommandAnimationGetPlaybackRate:
*t = CommandAnimationGetPlaybackRate
case CommandAnimationReleaseAnimations:
*t = CommandAnimationReleaseAnimations
case CommandAnimationResolveAnimation:
*t = CommandAnimationResolveAnimation
case CommandAnimationSeekAnimations: