API Docs for: 0.0.6
Show:

FirefoxDriver.Commands.WebDriver.Storage Class

Storage related WebDriver endpoints see JsonWireProtocol

Methods

applicationCacheStatus

(
  • sessionId
)

Get the status of the html5 application cache.

Parameters:

  • sessionId GET

    ID of the session to route the command to

clearLocalStorage

(
  • sessionId
)

Clears the complete local storage

Parameters:

  • sessionId GET

    ID of the session to route the command to

clearSessionStorage

(
  • sessionId
)

Clears the complete session storage

Parameters:

  • sessionId GET

    ID of the session to route the command to

deleteLocalStorageEntry

(
  • sessionId
  • key
)

Remove the storage item for the given key

Parameters:

  • sessionId GET

    ID of the session to route the command to

  • key GET

    The key to get

deleteSessionStorageEntry

(
  • sessionId
  • key
)

Remove the storage item for the given key

Parameters:

  • sessionId GET

    ID of the session to route the command to

  • key GET

    The key to get

getLocalStorage

(
  • sessionId
)

Get all keys of the browsers local storage

Parameters:

  • sessionId GET

    ID of the session to route the command to

getLocalStorageEntry

(
  • sessionId
  • key
)

Get the storage item for the given key

Parameters:

  • sessionId GET

    ID of the session to route the command to

  • key GET

    The key to get

getLocalStorageSize

(
  • sessionId
)

Get the number of items in the storage

Parameters:

  • sessionId GET

    ID of the session to route the command to

getSessionStorage

(
  • sessionId
)

Get all keys of the browsers session storage

Parameters:

  • sessionId GET

    ID of the session to route the command to

getSessionStorageEntry

(
  • sessionId
  • key
)

Get the storage item for the given key

Parameters:

  • sessionId GET

    ID of the session to route the command to

  • key GET

    The key to get

getSessionStorageSize

(
  • sessionId
)

Get the number of items in the storage

Parameters:

  • sessionId GET

    ID of the session to route the command to

setLocalStorage

(
  • sessionId
  • key
  • value
)

Set the storage item for the given key

Parameters:

  • sessionId GET

    ID of the session to route the command to

  • key POST

    The key to set

  • value POST

    The value to set

setSessionStorage

(
  • sessionId
  • key
  • value
)

Set the storage item for the given key

Parameters:

  • sessionId GET

    ID of the session to route the command to

  • key POST

    The key to set

  • value POST

    The value to set