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 Recent activity Votes
  • Drag and drop

    The dragAndDrop extension simulates an HTML5 drag-and-drop interaction by locating a source element and a destination element, then dispatching dragstart, drop, and dragend events in the page conte...

  • Get query parameter value

    The getQueryParameterByName extension reads a query parameter from the current page URL and returns the matching value. It is useful when a journey needs to verify that an application action has up...

  • Generate random data

    The generateRandom extension generates random test data using the Faker.js library. It accepts a Faker template string such as {{name.firstName}}, {{address.city}}, or {{datatype.uuid}} and returns...

  • Get computed style

    The getComputedStyle extension returns the computed value of a specific CSS property from a matching page element. It can locate the target element using either an XPath selector or a CSS selector....

  • Make DELETE call

    Make DELETE callThe API_DELETE extension sends an HTTP DELETE request to a REST API endpoint from a Virtuoso journey and returns the response body as a journey variable.This is useful when a test n...

  • Make/PUT API calls

    The API_PUT extension sends a PUT request to a REST API endpoint and returns the response body as a JSON string that can be stored in a Virtuoso variable.This is useful when a journey needs to upda...

  • Make/POST API calls

    Make POST API callsThe API_POST extension sends a POST request to a REST API endpoint and returns the response body as a JSON string that can be stored in a Virtuoso variable.This is useful when a ...

  • Make/GET API call

    The API_GET extension sends a GET request to a REST API endpoint and returns the response body as a JSON string that can be stored in a Virtuoso variable.This is useful when a journey needs to retr...

  • Get account reference number

    The Random/getAccountReferenceNumber extension is intended to request account data from a fixed endpoint and extract the AccountReferenceNumber field from the JSON response.This is useful when a jo...

  • Perform arithmetic operations

    The Arithmetic/arithmeticOperations extension performs a basic arithmetic operation on two provided values and returns either the calculated result or an error message.This is useful when a journey...