Package org.openqa.selenium.grid.node
Interface ActiveSession
-
- All Superinterfaces:
HttpHandler
- All Known Implementing Classes:
BaseActiveSession
,DockerSession
,ProtocolConvertingSession
public interface ActiveSession extends HttpHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Capabilities
getCapabilities()
Dialect
getDownstreamDialect()
SessionId
getId()
java.time.Instant
getStartTime()
Capabilities
getStereotype()
Dialect
getUpstreamDialect()
java.net.URI
getUri()
void
stop()
-
Methods inherited from interface org.openqa.selenium.remote.http.HttpHandler
execute, with
-
-
-
-
Method Detail
-
getId
SessionId getId()
-
getStereotype
Capabilities getStereotype()
-
getCapabilities
Capabilities getCapabilities()
-
getStartTime
java.time.Instant getStartTime()
-
getUri
java.net.URI getUri()
-
getUpstreamDialect
Dialect getUpstreamDialect()
-
getDownstreamDialect
Dialect getDownstreamDialect()
-
stop
void stop()
-
-