pl.wendigo.chrome / ChromeProtocol

ChromeProtocol

open class ChromeProtocol : Closeable (source)

ChromeProtocol represents session established with given inspectablePage via chrome's remote debugging protocol.

Properties

Accessibility

val Accessibility: AccessibilityDomain

Returns Accessibility domain object.

Animation

val Animation: AnimationDomain

Returns Animation domain object.

ApplicationCache

val ApplicationCache: ApplicationCacheDomain

Returns ApplicationCache domain object.

Audits

val Audits: AuditsDomain

Audits domain allows investigation of page violations and possible improvements.

BackgroundService

val BackgroundService: BackgroundServiceDomain

Defines events for background web platform features.

Browser

val Browser: BrowserDomain

The Browser domain defines methods and events for browser managing.

CacheStorage

val CacheStorage: CacheStorageDomain

Returns CacheStorage domain object.

Cast

val Cast: CastDomain

A domain for interacting with Cast, Presentation API, and Remote Playback API functionalities.

Console

val Console: ConsoleDomain

This domain is deprecated - use Runtime or Log instead.

CSS

val CSS: CSSDomain

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 keep track of stylesheets via the styleSheetAdded/styleSheetRemoved events and subsequently load the required stylesheet contents using the getStyleSheet[Text]() methods.

Database

val Database: DatabaseDomain

Returns Database domain object.

Debugger

val Debugger: DebuggerDomain

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

DeviceOrientation

val DeviceOrientation: DeviceOrientationDomain

Returns DeviceOrientation domain object.

DOM

val DOM: DOMDomain

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.

DOMDebugger

val DOMDebugger: DOMDebuggerDomain

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.

DOMSnapshot

val DOMSnapshot: DOMSnapshotDomain

This domain facilitates obtaining document snapshots with DOM, layout, and style information.

DOMStorage

val DOMStorage: DOMStorageDomain

Query and modify DOM storage.

Emulation

val Emulation: EmulationDomain

This domain emulates different environments for the page.

Fetch

val Fetch: FetchDomain

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

HeadlessExperimental

val HeadlessExperimental: HeadlessExperimentalDomain

This domain provides experimental commands only supported in headless mode.

HeapProfiler

val HeapProfiler: HeapProfilerDomain

Returns HeapProfiler domain object.

IndexedDB

val IndexedDB: IndexedDBDomain

Returns IndexedDB domain object.

Input

val Input: InputDomain

Returns Input domain object.

Inspector

val Inspector: InspectorDomain

Returns Inspector domain object.

IO

val IO: IODomain

Input/Output operations for streams produced by DevTools.

LayerTree

val LayerTree: LayerTreeDomain

Returns LayerTree domain object.

Log

val Log: LogDomain

Provides access to log entries.

Media

val Media: MediaDomain

This domain allows detailed inspection of media elements

Memory

val Memory: MemoryDomain

Returns Memory domain object.

Network

val Network: NetworkDomain

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.

Overlay

val Overlay: OverlayDomain

This domain provides various functionality related to drawing atop the inspected page.

Page

val Page: PageDomain

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

Performance

val Performance: PerformanceDomain

Returns Performance domain object.

Profiler

val Profiler: ProfilerDomain

Returns Profiler domain object.

Runtime

val Runtime: RuntimeDomain

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.

Schema

val Schema: SchemaDomain

Provides information about the protocol schema.

Security

val Security: SecurityDomain

Security

ServiceWorker

val ServiceWorker: ServiceWorkerDomain

Returns ServiceWorker domain object.

Storage

val Storage: StorageDomain

Returns Storage domain object.

SystemInfo

val SystemInfo: SystemInfoDomain

The SystemInfo domain defines methods and events for querying low-level system information.

Target

val Target: TargetDomain

Supports additional targets discovery and allows to attach to them.

Tethering

val Tethering: TetheringDomain

The Tethering domain defines methods and events for browser port binding.

Tracing

val Tracing: TracingDomain

Returns Tracing domain object.

WebAudio

val WebAudio: WebAudioDomain

This domain allows inspection of Web Audio API. https://webaudio.github.io/web-audio-api/

WebAuthn

val WebAuthn: WebAuthnDomain

This domain allows configuring virtual authenticators to test the WebAuthn API.

Functions

close

open fun close(): Unit

Closes debugging session.

Events

fun Events(): Flowable<ProtocolEvent>

Returns flowable capturing all events.

Inheritors

HeadlessChromeProtocol

class HeadlessChromeProtocol : ChromeProtocol