Execute

The Execute feature in Revyl allows you to create and manage end-to-end tests directly from the test editor page. Here’s a guide on how to use this feature effectively:

Managing Devices

Starting a Device

To begin testing, a cloud device must be started:

  1. Click the “Start Device” button in the test editor
  2. This initializes a virtual device where tests can be executed
  3. Adjust viewport size through the dropdown menu

Already Running Devices

When you have a device running, you can:

  • Stop Device: Halt the testing process and manage resources effectively
  • Restart Device: Stop the current device and start a new one (useful for clearing cookies)
  • Check Pages: Force check for other pages open on the device

Creating Test Steps

You can create various types of steps in your test, such as clicking buttons, entering text, or navigating through the application. Each step can be defined using commands or by recording actions.

Broad Steps Types

TypeDescriptionParameters
InstructionNatural language instruction (e.g., Sign-in)step (str)
ValidationTest if a condition is true (e.g., Confirm that the user is on the checkout page)validation (str)
ExtractParse data from the current state into a JSON structureextraction (str)

Manual Actions

ActionDescriptionParameters
NavigateGo to a specific URL(str) URL to navigate to
BackGo back to the previous pageNone
ForwardGo forward to the next pageNone
RefreshRefresh the current pageNone
WaitWait for a specific amount of time(int) seconds to wait

Explicit Action Types

ActionDescriptionParameters
ClickClick on an element in the page(str) component to click on
Input TextInput text to a field (e.g., Input {{[email protected]}} into the email field)(str) text to input
Scroll DownScroll down on the page(str) component to scroll on
Scroll UpScroll up on the pageOptional (str) component to scroll up on
ScrapeScrape specific JSON data from the statePydantic model type
SwipeHorizontal swipingOptional (str) Component to swipe on
SelectChoose a selector from dropdown(str) selector to choose from
HoverHover over a component(str) Component to hover over
File UploadUpload a file to the page(file) File to upload

Step Settings

Clicking on the 3 dots on a step will expand the step to show the settings for the step:

  • Vision: Use a screenshot while running the step (useful when DOM doesn’t explicitly identify components)
  • Download: Download a file from the page (appears in test report)
  • Locate: Highlight a component on the page
  • Input Selector: Cached selector for the step (xpath, CSS selector, or text value)