events.go 728 B

1234567891011121314151617181920
  1. package accessibility
  2. // Code generated by cdproto-gen. DO NOT EDIT.
  3. // EventLoadComplete the loadComplete event mirrors the load complete event
  4. // sent by the browser to assistive technology when the web page has finished
  5. // loading.
  6. //
  7. // See: https://chromedevtools.github.io/devtools-protocol/tot/Accessibility#event-loadComplete
  8. type EventLoadComplete struct {
  9. Root *Node `json:"root"` // New document root node.
  10. }
  11. // EventNodesUpdated the nodesUpdated event is sent every time a previously
  12. // requested node has changed the in tree.
  13. //
  14. // See: https://chromedevtools.github.io/devtools-protocol/tot/Accessibility#event-nodesUpdated
  15. type EventNodesUpdated struct {
  16. Nodes []*Node `json:"nodes"` // Updated node data.
  17. }