Uses of Class
org.openqa.selenium.devtools.target.model.SessionID
-
Packages that use SessionID Package Description org.openqa.selenium.devtools org.openqa.selenium.devtools.target org.openqa.selenium.devtools.target.model -
-
Uses of SessionID in org.openqa.selenium.devtools
Methods in org.openqa.selenium.devtools that return SessionID Modifier and Type Method Description SessionID
DevTools. getCdpSession()
Methods in org.openqa.selenium.devtools with parameters of type SessionID Modifier and Type Method Description <X> java.util.concurrent.CompletableFuture<X>
Connection. send(SessionID sessionId, Command<X> command)
<X> X
Connection. sendAndWait(SessionID sessionId, Command<X> command, java.time.Duration timeout)
-
Uses of SessionID in org.openqa.selenium.devtools.target
Methods in org.openqa.selenium.devtools.target that return types with arguments of type SessionID Modifier and Type Method Description static Command<SessionID>
Target. attachToBrowserTarget()
Attaches to the browser target, only uses flat sessionId mode.static Command<SessionID>
Target. attachToTarget(TargetID targetId, java.util.Optional<java.lang.Boolean> flatten)
Attaches to the target with given id.Method parameters in org.openqa.selenium.devtools.target with type arguments of type SessionID Modifier and Type Method Description static Command<java.lang.Void>
Target. detachFromTarget(java.util.Optional<SessionID> sessionId, java.util.Optional<TargetID> targetId)
Detaches session with given id.static Command<java.lang.Void>
Target. sendMessageToTarget(java.lang.String message, java.util.Optional<SessionID> sessionId, java.util.Optional<TargetID> targetId)
Deprecated. -
Uses of SessionID in org.openqa.selenium.devtools.target.model
Methods in org.openqa.selenium.devtools.target.model that return SessionID Modifier and Type Method Description SessionID
AttachedToTarget. getSessionId()
Identifier assigned to the session used to send/receive messages.SessionID
DetachedFromTarget. getSessionId()
Detached session identifier.SessionID
ReceivedMessageFromTarget. getSessionId()
Identifier of a session which sends a message.Constructors in org.openqa.selenium.devtools.target.model with parameters of type SessionID Constructor Description AttachedToTarget(SessionID sessionId, TargetInfo targetInfo, java.lang.Boolean waitingForDebugger)
DetachedFromTarget(SessionID sessionId, java.util.Optional<TargetID> targetId)
ReceivedMessageFromTarget(SessionID sessionId, java.lang.String message, java.util.Optional<TargetID> targetId)
-