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