Package org.openqa.selenium.grid.session
Interface ActiveSession
-
- All Superinterfaces:
HttpHandler
,WrapsDriver
- All Known Implementing Classes:
RemoteSession
,ServicedSession
public interface ActiveSession extends HttpHandler, WrapsDriver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>
getCapabilities()
Describe the current webdriver session's capabilities.Dialect
getDownstreamDialect()
TemporaryFilesystem
getFileSystem()
SessionId
getId()
Dialect
getUpstreamDialect()
void
stop()
-
Methods inherited from interface org.openqa.selenium.remote.http.HttpHandler
execute, with
-
Methods inherited from interface org.openqa.selenium.WrapsDriver
getWrappedDriver
-
-
-
-
Method Detail
-
getId
SessionId getId()
-
getUpstreamDialect
Dialect getUpstreamDialect()
-
getDownstreamDialect
Dialect getDownstreamDialect()
-
getCapabilities
java.util.Map<java.lang.String,java.lang.Object> getCapabilities()
Describe the current webdriver session's capabilities.
-
getFileSystem
TemporaryFilesystem getFileSystem()
-
stop
void stop()
-
-