-
public interface BrowserTargetRepresents the available domain APIs in Browser targets
-
-
Method Summary
Modifier and Type Method Description abstract BrowserDomaingetBrowser()The Browser domain defines methods and events for browser managing. abstract IODomaingetIo()Input/Output operations for streams produced by DevTools. abstract MemoryDomaingetMemory()abstract SecurityDomaingetSecurity()Security abstract StorageDomaingetStorage()abstract SystemInfoDomaingetSystemInfo()The SystemInfo domain defines methods and events for querying low-level system information. abstract TargetDomaingetTarget()Supports additional targets discovery and allows to attach to them. abstract TetheringDomaingetTethering()The Tethering domain defines methods and events for browser port binding. abstract TracingDomaingetTracing()abstract FetchDomaingetFetch()A domain for letting clients substitute browser's network layer with client code. -
-
Method Detail
-
getBrowser
abstract BrowserDomain getBrowser()
The Browser domain defines methods and events for browser managing.
-
getMemory
abstract MemoryDomain getMemory()
-
getSecurity
abstract SecurityDomain getSecurity()
Security
-
getStorage
abstract StorageDomain getStorage()
-
getSystemInfo
abstract SystemInfoDomain getSystemInfo()
The SystemInfo domain defines methods and events for querying low-level system information.
-
getTarget
abstract TargetDomain getTarget()
Supports additional targets discovery and allows to attach to them.
-
getTethering
abstract TetheringDomain getTethering()
The Tethering domain defines methods and events for browser port binding.
-
getTracing
abstract TracingDomain getTracing()
-
getFetch
abstract FetchDomain getFetch()
A domain for letting clients substitute browser's network layer with client code.
-
-
-
-