Crate chrome_remote_interface_model[][src]

Chrome DevTools Protocol message model.

License

Licensed under either of

  • Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
  • MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.!

Modules

browser

The Browser domain defines methods and events for browser managing.

consoleDeprecated

This domain is deprecated - use Runtime or Log instead.

debugger

Debugger domain exposes JavaScript debugging capabilities. It allows setting and removing breakpoints, stepping through execution, exploring stack traces, etc.

dom

This domain exposes DOM read/write operations. Each DOM Node is represented with its mirror object that has an id. This id can be used to get additional information on the Node, resolve it into the JavaScript object wrapper, etc. It is important that client receives DOM events only for the nodes that are known to the client. Backend keeps track of the nodes that were sent to the client and never sends the same node twice. It is client's responsibility to collect information about the nodes that were sent to the client.

Note that iframe owner elements will return corresponding document elements as their child nodes.

dom_debugger

DOM debugging allows setting breakpoints on particular DOM operations and events. JavaScript execution will stop on these operations as if there was a regular breakpoint set.

emulation

This domain emulates different environments for the page.

fetch

A domain for letting clients substitute browser's network layer with client code.

input
io

Input/Output operations for streams produced by DevTools.

log

Provides access to log entries.

network

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

page

Actions and events related to the inspected page belong to the page domain.

performance
profiler
runtime

Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror objects. Evaluation results are returned as mirror object that expose object type, string representation and unique identifier that can be used for further object reference. Original objects are maintained in memory unless they are either explicitly released or are released along with the other objects in their object group.

schemaDeprecated

This domain is deprecated.

security

Security

target

Supports additional targets discovery and allows to attach to them.

Structs

Request

Message from client.

SessionId

Session id.

Enums

Event

Chrome DevTools Protocol event.

Response

Message structure from Chrome.

Constants

VERSION

Generating Chrome DevTools protocol version.

Traits

Command

Chrome DevTools Protocol Command.