Class RemoteLocalStorage

java.lang.Object
org.openqa.selenium.remote.html5.RemoteLocalStorage
All Implemented Interfaces:
org.openqa.selenium.html5.LocalStorage, org.openqa.selenium.html5.Storage

public class RemoteLocalStorage extends Object implements org.openqa.selenium.html5.LocalStorage
Executes the commands to access HTML5 localStorage on the remote webdriver server.
  • Constructor Details

    • RemoteLocalStorage

      public RemoteLocalStorage(ExecuteMethod executeMethod)
  • Method Details

    • getItem

      public String getItem(String key)
      Specified by:
      getItem in interface org.openqa.selenium.html5.Storage
    • keySet

      public Set<String> keySet()
      Specified by:
      keySet in interface org.openqa.selenium.html5.Storage
    • setItem

      public void setItem(String key, String value)
      Specified by:
      setItem in interface org.openqa.selenium.html5.Storage
    • removeItem

      public String removeItem(String key)
      Specified by:
      removeItem in interface org.openqa.selenium.html5.Storage
    • clear

      public void clear()
      Specified by:
      clear in interface org.openqa.selenium.html5.Storage
    • size

      public int size()
      Specified by:
      size in interface org.openqa.selenium.html5.Storage