-
public interface ServiceWorkerTargetRepresents the available domain APIs in ServiceWorker targets
-
-
Method Summary
Modifier and Type Method Description abstract IODomaingetIo()Input/Output operations for streams produced by DevTools. abstract InspectorDomaingetInspector()abstract NetworkDomaingetNetwork()Network domain allows tracking network activities of the page. abstract TargetDomaingetTarget()Supports additional targets discovery and allows to attach to them. abstract FetchDomaingetFetch()A domain for letting clients substitute browser's network layer with client code. abstract SchemaDomaingetSchema()This domain is deprecated. -
-
Method Detail
-
getInspector
abstract InspectorDomain getInspector()
-
getNetwork
abstract NetworkDomain getNetwork()
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.
-
getTarget
abstract TargetDomain getTarget()
Supports additional targets discovery and allows to attach to them.
-
getFetch
abstract FetchDomain getFetch()
A domain for letting clients substitute browser's network layer with client code.
-
getSchema
abstract SchemaDomain getSchema()
This domain is deprecated.
-
-
-
-