Package org.openqa.selenium.grid.node
Interface ActiveSession
-
- All Superinterfaces:
org.openqa.selenium.remote.http.HttpHandler
- All Known Implementing Classes:
BaseActiveSession
,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.Capabilities
getCapabilities()
org.openqa.selenium.remote.Dialect
getDownstreamDialect()
org.openqa.selenium.remote.SessionId
getId()
java.time.Instant
getStartTime()
org.openqa.selenium.Capabilities
getStereotype()
org.openqa.selenium.remote.Dialect
getUpstreamDialect()
java.net.URI
getUri()
void
stop()
-
-
-
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()
-
-