Uses of Class
org.openqa.selenium.devtools.target.model.TargetID
-
Packages that use TargetID Package Description org.openqa.selenium.devtools.browser org.openqa.selenium.devtools.serviceworker.model org.openqa.selenium.devtools.target org.openqa.selenium.devtools.target.model -
-
Uses of TargetID in org.openqa.selenium.devtools.browser
Method parameters in org.openqa.selenium.devtools.browser with type arguments of type TargetID Modifier and Type Method Description static Command<Browser.GetWindowForTargetResponse>
Browser. getWindowForTarget(java.util.Optional<TargetID> targetId)
Get the browser window that contains the devtools target. -
Uses of TargetID in org.openqa.selenium.devtools.serviceworker.model
Methods in org.openqa.selenium.devtools.serviceworker.model that return types with arguments of type TargetID Modifier and Type Method Description java.util.Optional<java.util.List<TargetID>>
ServiceWorkerVersion. getControlledClients()
java.util.Optional<TargetID>
ServiceWorkerVersion. getTargetId()
-
Uses of TargetID in org.openqa.selenium.devtools.target
Methods in org.openqa.selenium.devtools.target that return types with arguments of type TargetID Modifier and Type Method Description static Command<TargetID>
Target. createTarget(java.lang.String url, java.util.Optional<java.lang.Integer> width, java.util.Optional<java.lang.Integer> height, java.util.Optional<BrowserContextID> browserContextId, java.util.Optional<java.lang.Boolean> enableBeginFrameControl, java.util.Optional<java.lang.Boolean> newWindow, java.util.Optional<java.lang.Boolean> background)
Creates a new page.static Event<TargetID>
Target. targetDestroyed()
Methods in org.openqa.selenium.devtools.target with parameters of type TargetID Modifier and Type Method Description static Command<java.lang.Void>
Target. activateTarget(TargetID targetId)
Activates (focuses) the target.static Command<SessionID>
Target. attachToTarget(TargetID targetId, java.util.Optional<java.lang.Boolean> flatten)
Attaches to the target with given id.static Command<java.lang.Boolean>
Target. closeTarget(TargetID targetId)
Closes the target.static Command<java.lang.Void>
Target. exposeDevToolsProtocol(TargetID targetId, java.util.Optional<java.lang.String> bindingName)
Inject object to the target's main frame that provides a communication channel with browser target.Method parameters in org.openqa.selenium.devtools.target with type arguments of type TargetID Modifier and Type Method Description static Command<TargetInfo>
Target. getTargetInfo(java.util.Optional<TargetID> targetId)
Returns information about a target. -
Uses of TargetID in org.openqa.selenium.devtools.target.model
Methods in org.openqa.selenium.devtools.target.model that return TargetID Modifier and Type Method Description TargetID
TargetCrashed. getTargetId()
TargetID
TargetInfo. getTargetId()
Methods in org.openqa.selenium.devtools.target.model that return types with arguments of type TargetID Modifier and Type Method Description java.util.Optional<TargetID>
TargetInfo. getOpenerId()
Opener target Idjava.util.Optional<TargetID>
DetachedFromTarget. getTargetId()
Deprecated.java.util.Optional<TargetID>
ReceivedMessageFromTarget. getTargetId()
Deprecated.Constructors in org.openqa.selenium.devtools.target.model with parameters of type TargetID Constructor Description TargetCrashed(TargetID targetId, java.lang.String status, java.lang.Integer errorCode)
TargetInfo(TargetID targetId, java.lang.String type, java.lang.String title, java.lang.String url, java.lang.Boolean attached, java.util.Optional<TargetID> openerId, java.util.Optional<BrowserContextID> browserContextId)
Constructor parameters in org.openqa.selenium.devtools.target.model with type arguments of type TargetID Constructor Description DetachedFromTarget(SessionID sessionId, java.util.Optional<TargetID> targetId)
ReceivedMessageFromTarget(SessionID sessionId, java.lang.String message, java.util.Optional<TargetID> targetId)
TargetInfo(TargetID targetId, java.lang.String type, java.lang.String title, java.lang.String url, java.lang.Boolean attached, java.util.Optional<TargetID> openerId, java.util.Optional<BrowserContextID> browserContextId)
-