The Remove
class is an action class in the Screenplay pattern designed for use with the @testla/screenplay
library. This class allows actors to remove either Session Storage Items or Local Storage Items from the browser using the BrowseTheWeb
ability provided by Testla.
public performAs(actor: Actor): Promise<any>;
- Description: Removes either Session Storage Items or Local Storage Items from the browser.
- Parameters:
actor
- The actor performing this action.
- Returns:
Promise<any>
- Returns the value of thepageFunction
invocation.
public static sessionStorageItem(key: string): Remove;
- Description: Creates a new instance of the
Remove
class specifically for removing a session storage item with the given key. - Parameters:
key
- The key that specifies the item to be removed.
- Returns:
Remove
- Returns a newRemove
instance for session storage.
public static localStorageItem(key: string): Remove;
- Description: Creates a new instance of the
Remove
class specifically for removing a local storage item with the given key. - Parameters:
key
- The key that specifies the item to be removed.
- Returns:
Remove
- Returns a newRemove
instance for local storage.
public withAbilityAlias(alias: string): Remove;
- Description: Defines the ability alias to be used during execution.
- Parameters:
alias
- The alias.
- Returns:
Remove
- Returns the current action.
Introduced in: 1.6.0
public get orSkipOnFail(): Remove;
- Description: Allows to skip an action on fail.
- Returns:
Remove
- Returns the current action.