Package org.openqa.selenium.grid.session
Interface ActiveSession
-
- All Superinterfaces:
org.openqa.selenium.remote.http.HttpHandler,org.openqa.selenium.WrapsDriver
- All Known Implementing Classes:
RemoteSession,ServicedSession
public interface ActiveSession extends org.openqa.selenium.remote.http.HttpHandler, org.openqa.selenium.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.org.openqa.selenium.remote.DialectgetDownstreamDialect()org.openqa.selenium.io.TemporaryFilesystemgetFileSystem()org.openqa.selenium.remote.SessionIdgetId()org.openqa.selenium.remote.DialectgetUpstreamDialect()voidstop()
-
-
-
Method Detail
-
getId
org.openqa.selenium.remote.SessionId getId()
-
getUpstreamDialect
org.openqa.selenium.remote.Dialect getUpstreamDialect()
-
getDownstreamDialect
org.openqa.selenium.remote.Dialect getDownstreamDialect()
-
getCapabilities
java.util.Map<java.lang.String,java.lang.Object> getCapabilities()
Describe the current webdriver session's capabilities.
-
getFileSystem
org.openqa.selenium.io.TemporaryFilesystem getFileSystem()
-
stop
void stop()
-
-