Package org.openqa.selenium.remote.html5
Class RemoteSessionStorage
- java.lang.Object
-
- org.openqa.selenium.remote.html5.RemoteSessionStorage
-
- All Implemented Interfaces:
org.openqa.selenium.html5.SessionStorage
public class RemoteSessionStorage extends java.lang.Object implements org.openqa.selenium.html5.SessionStorage
Executes the commands to access HTML5 sessionStorage on the remote webdriver server.
-
-
Constructor Summary
Constructors Constructor Description RemoteSessionStorage(ExecuteMethod executeMethod)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
java.lang.String
getItem(java.lang.String key)
java.util.Set<java.lang.String>
keySet()
java.lang.String
removeItem(java.lang.String key)
void
setItem(java.lang.String key, java.lang.String value)
int
size()
-
-
-
Constructor Detail
-
RemoteSessionStorage
public RemoteSessionStorage(ExecuteMethod executeMethod)
-
-
Method Detail
-
getItem
public java.lang.String getItem(java.lang.String key)
- Specified by:
getItem
in interfaceorg.openqa.selenium.html5.SessionStorage
-
keySet
public java.util.Set<java.lang.String> keySet()
- Specified by:
keySet
in interfaceorg.openqa.selenium.html5.SessionStorage
-
setItem
public void setItem(java.lang.String key, java.lang.String value)
- Specified by:
setItem
in interfaceorg.openqa.selenium.html5.SessionStorage
-
removeItem
public java.lang.String removeItem(java.lang.String key)
- Specified by:
removeItem
in interfaceorg.openqa.selenium.html5.SessionStorage
-
clear
public void clear()
- Specified by:
clear
in interfaceorg.openqa.selenium.html5.SessionStorage
-
size
public int size()
- Specified by:
size
in interfaceorg.openqa.selenium.html5.SessionStorage
-
-