Class BrowserSteps
The `BrowserSteps` class provides a collection of static methods to interact with the browser's local storage, manage cookies, and perform common browser-related steps. It simplifies browser state manipulation in test automation and debugging scenarios.
Purpose:
- Provide reusable methods for browser state operations.
- Streamline test setup and teardown by handling browser state programmatically.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
Adds a cookie to the browser and refreshes the current page.static void
addCookies
(Map<String, String> cookies) Adds multiple cookies to the browser and refreshes the current page.static void
addValueToLocalStorage
(String key, String value) Inserts a key-value pair into the browser's local storage.static void
assertCookieAbsent
(String cookieName) Asserts that a cookie with the specified name is absent in the browser's storage.static void
assertCookiePresent
(String cookieName) Asserts that a cookie with the specified name is present in the browser.static void
assertCookieValue
(String cookieName, String expectedValue) Asserts that a cookie has the expected value.static void
Asserts that the local storage is empty.static void
assertLocalStorageValue
(String key, String expectedValue) Asserts that the local storage item with the specified key has the expected value.static void
Asserts that the local storage does not contain an item with the specified key.static void
Clears all entries from the browser's local storage.static void
Deletes all cookies from the browser and refreshes the current page.static void
deleteCookie
(String nameCookie) Deletes a cookie from the browser by its name and refreshes the current page.static void
deleteValueFromLocalStorage
(String variable) Removes an item from the browser's local storage by its key.static void
updateCookie
(String nameCookie, String newValueCookie) Updates the value of an existing cookie or creates a new one if it doesn't exist, then refreshes the page.static void
updateValueInLocalStorage
(String key, String newValue) Updates the value of an existing item in the browser's local storage.
-
Constructor Details
-
BrowserSteps
public BrowserSteps()
-
-
Method Details
-
clearLocalStorage
@Step("Clear the local storage") public static void clearLocalStorage()Clears all entries from the browser's local storage.This method executes a JavaScript command to clear all data from the browser's local storage.
Purpose:
- Ensure a clean state for tests by removing all local storage items.
Step
Clear the local storage
-
addValueToLocalStorage
@Step("Insert the item \'{key}\' with the value \'{value}\' into the local storage") public static void addValueToLocalStorage(String key, String value) Inserts a key-value pair into the browser's local storage.This method uses JavaScript to add an item with the specified key and value into the browser's local storage.
- Parameters:
key
- the key of the local storage itemvalue
- the value to associate with the keyStep
Insert the item '{key}' with the value '{value}' into the local storage
-
updateValueInLocalStorage
@Step("Update the local storage item \'{key}\' with the new value \'{newValue}\'") public static void updateValueInLocalStorage(String key, String newValue) Updates the value of an existing item in the browser's local storage.This method modifies the value of an item with the specified key in local storage, or creates it if it does not exist.
- Parameters:
key
- the key of the local storage item to updatenewValue
- the new value to set for the itemStep
Update the local storage item '{key}' with the new value '{newValue}'
-
deleteValueFromLocalStorage
@Step("Removing the \'{variable}\' from the local storage") public static void deleteValueFromLocalStorage(String variable) Removes an item from the browser's local storage by its key.This method deletes the local storage item with the specified key, if it exists.
- Parameters:
variable
- the key of the local storage item to removeStep
Removing the '{variable}' from the local storage
-
assertLocalStorageValue
@Step("Assert the local storage item \'{key}\' has the value \'{expectedValue}\'") public static void assertLocalStorageValue(String key, String expectedValue) Asserts that the local storage item with the specified key has the expected value.This method retrieves the value from the local storage for the provided key and compares it with the expected value. Throws an assertion error if the key is not present or the value does not match.
- Parameters:
key
- the key of the local storage itemexpectedValue
- the expected value for the keyStep
Assert the local storage item '{key}' has the value '{expectedValue}'
-
assertLocalStorageValueAbsent
@Step("Assert that the local storage does not contain an item with the key \'{key}\'") public static void assertLocalStorageValueAbsent(String key) Asserts that the local storage does not contain an item with the specified key.This method checks the absence of a key in the local storage and throws an assertion error if the key exists.
- Parameters:
key
- the key to check in the local storageStep
Assert that the local storage does not contain an item with the key '{key}'
-
assertLocalStorageIsBlank
@Step("Assert that the local storage is blank") public static void assertLocalStorageIsBlank()Asserts that the local storage is empty.This method verifies that there are no items in the local storage by checking its length. Throws an assertion error if the local storage is not empty.
Step
Assert that the local storage is blank
-
addCookie
@Step("Add the cookie \'{nameCookie}\' with the value=\'{valueCookie}\'") public static void addCookie(String nameCookie, String valueCookie) Adds a cookie to the browser and refreshes the current page.This method appends a cookie with the specified name and value to the browser's cookie storage and then refreshes the page to ensure the cookie is applied.
- Parameters:
nameCookie
- the name of the cookievalueCookie
- the value of the cookieStep
Add the cookie '{nameCookie}' with the value='{valueCookie}'
-
addCookies
Adds multiple cookies to the browser and refreshes the current page.This method iterates over the provided map of cookies, adding each cookie to the browser's cookie storage, and then refreshes the page to apply the changes.
- Parameters:
cookies
- a map containing cookie names as keys and their respective values as valuesExample Usage:
Map<String, String> cookies = Map.of("sessionToken", "abc123", "userId", "42"); BrowserSteps.addCookies(cookies);
-
updateCookie
@Step("Update the cookie \'{nameCookie}\' with the new value=\'{newValueCookie}\'") public static void updateCookie(String nameCookie, String newValueCookie) Updates the value of an existing cookie or creates a new one if it doesn't exist, then refreshes the page.This method first deletes the cookie with the specified name (if present) and then adds a new cookie with the same name but a new value. The page is refreshed to apply the updated cookie.
- Parameters:
nameCookie
- the name of the cookie to updatenewValueCookie
- the new value for the cookieStep
Update the cookie '{nameCookie}' with the new value='{newValueCookie}'
-
deleteCookie
Deletes a cookie from the browser by its name and refreshes the current page.This method removes a single cookie specified by its name from the browser's cookie storage and then refreshes the page to apply the changes.
- Parameters:
nameCookie
- the name of the cookie to removeStep
Remove the cookie '{nameCookie}'
-
deleteAllCookies
@Step("Remove all cookies") public static void deleteAllCookies()Deletes all cookies from the browser and refreshes the current page.This method clears all cookies stored in the browser and then refreshes the page to reflect the changes.
Step
Remove all cookies
-
assertCookiePresent
@Step("Assert that the cookie \'{cookieName}\' presents") public static void assertCookiePresent(String cookieName) Asserts that a cookie with the specified name is present in the browser.This method checks if the cookie exists within the browser's storage, retrying until the timeout is reached.
- Parameters:
cookieName
- the name of the cookie to checkStep
Assert that the cookie '{cookieName}' presents
Example Usage:
BrowserSteps.assertCookiePresent("sessionCookie");
-
assertCookieAbsent
@Step("Assert that the cookie \'{cookieName}\' is absent in the local storage") public static void assertCookieAbsent(String cookieName) Asserts that a cookie with the specified name is absent in the browser's storage.This method ensures that the cookie does not exist, retrying until the timeout is reached.
- Parameters:
cookieName
- the name of the cookie to checkStep
Assert that the cookie '{cookieName}' is absent in the local storage
Example Usage:
BrowserSteps.assertCookieAbsent("obsoleteCookie");
-
assertCookieValue
@Step("Assert that the cookie \'{cookieName}\' has the value \'{expectedValue}\'") public static void assertCookieValue(String cookieName, String expectedValue) Asserts that a cookie has the expected value.This method retrieves the cookie with the specified name and verifies that its value matches the expected value.
- Parameters:
cookieName
- the name of the cookie to checkexpectedValue
- the expected value of the cookieStep
Assert that the cookie '{cookieName}' has the value '{expectedValue}'
Example Usage:
BrowserSteps.assertCookieValue("sessionCookie", "xyz123");
-