Suhas Reddy
- Total activity 66
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 0
Articles
Recent activity by Suhas Reddy-
Set local storage value
The Browser/localStorageSet extension stores a value in the browser's localStorage using a provided key.This is useful when a journey needs to prepare browser-side state before later steps read it,...
-
Get local storage value
The Browser/localStorageGet extension retrieves the value stored against a specific key in the browser's localStorage for the current page context.This is useful when a journey needs to reuse a val...
-
Convert CSV to JSON
The Conversion/CSVtoJSON extension fetches a CSV file from a provided file path or URL, parses the CSV content, and returns the data as JSON objects.This is useful when a journey downloads, uploads...
-
Compare values
The Compare extension compares two provided values and returns a pass-style message when both values match exactly.This is useful when a journey needs to compare an expected value with an actual va...
-
Check string contains either value
The StringOperations/containsEither extension checks whether an input string contains at least one of two expected values. If the input contains either value, the step passes. If neither value is f...
-
Fetch cell data from a table
The Data/fetchCellDataFromTable extension retrieves the visible text from a specific table cell on the current page. It uses an XPath expression to locate table rows, then selects the requested row...
-
Validate array string lengths
The Search/arrayStringLength extension checks each item in a JSON array and confirms that every item is a string, is not null or undefined, is not blank after trimming, and stays within the configu...
-
Get axe accessibility violations
Audit accessibility with axe-coreThe getAxeAccessibilityViolations extension runs axe-core accessibility checks against the current browser page and returns a compact JSON summary of detected viola...
-
Generate random mobile number
The Random/GetMobileNumber extension generates a random 10-digit integer.This is useful when a journey needs a random mobile-number-like value for test data entry or validation steps.Parameters:No ...
-
Get days of week
The Date/getDaysOfWeek extension generates an array of formatted dates starting from the current date.This is useful when a journey needs a list of upcoming dates, such as the next seven days, in a...