-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
implement following steps
/**
* Set value of local/session storage
* @param {string} storageKey - local/session storage key to set value
* @param {string} storageType - storage type (local or session)
* @param {string} value - value to set
* @example I set 'username' local storage value as 'user1'
* @example I set '$sessionStorageKey' session storage value as '$sessionStorageValue'
*/
When('I set {string} {word} storage value as {string}', async function (storageKey, storageType, value) {
});
/**
* Save value of local/session storage to memory
* @param {string} storageKey - local/session storage key to set value
* @param {string} storageType - storage type (local or session)
* @param {string} key - memory key
* @example I save value of 'username' local storage as 'localStorageValue'
* @example I save value of '$sessionStorageKey' session storage value as 'sessionStorageValue'
*/
When('I save value of {string} {word} storage as {string}', async function (storageKey, storageType, key) {
});Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request