Documentation
Dataflows
Guides
Using local storage

Using local storage

Local storage allows you to store values in the local storage of the browser you are using.

Stored values can be referenced in the form {{ querierLocalStorage.value.xxxx }}.

Execute setItem.

  1. from [Select Action] select [Utility > Local Storage].
  2. specify [Action to be performed] as [setItem].
  3. enter [Key] and [Value]. (You can also refer to them by {{ }} respectively).
  4. select the local storage action and run the test via [Test Action].
  5. check that you can reference the value of the specified Key with {{ querierLocalStorage.value.xxxx }}.

Run removeItem.

  1. from [Select Action] select [Utility > Local Storage].
  2. specify [Action to be performed] as [removeItem].
  3. enter [Key]. (You can also refer to it by {{ }}).
  4. select the local storage action and run the test from [test action].
  5. confirm that the value of the specified Key has been removed from {{ querierLocalStorage.value }}.

Run clear.

  1. from [Select Action] select [Utilities > Local Storage].
  2. specify [Action to be performed] as [clear]. Select the local storage action and test it via [test action].
  3. verify that all Key values have been removed from {{ querierLocalStorage.value }}.