Package org.openqa.selenium.html5
Interface SessionStorage
-
public interface SessionStorageRepresents the session storage in the browser for the site currently opened in the browser. The session storage areas is specific to the current top level browsing context. Each context has a unique set of session storage, one for each origin. Sites can add data to the session storage and it will be accessible to any page from the same site opened in that window.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()java.lang.StringgetItem(java.lang.String key)java.util.Set<java.lang.String>keySet()java.lang.StringremoveItem(java.lang.String key)voidsetItem(java.lang.String key, java.lang.String value)intsize()
-