This section is dedicated to creating a test in Revyl. Follow the steps below to create and run your first test:

Step 1: Navigate to the Test Section

  1. Click on Tests in the sidebar.
  2. Once on the Tests page, click New Test in the top-right corner.

Step 2: Enter Test Details

  1. Fill in the required test details:

    • Test Case Description: Provide a meaningful name.
    • Platform: Select between Web, Mobile, etc.
    • Test Website: Enter the URL of the site you want to test.
    • Schedule: (Optional) Define a cron schedule for automated runs.

Step 3: Add Test Steps

  1. Manually add steps by clicking Add Step and entering detailed instructions, such as:

    • Clicking a button.
    • Entering text into a field.
    • Navigating to a specific section.
  2. Alternatively, use the recording feature to automatically create steps based on interactions.

Step 4: Save and Run the Test

  1. Click Save Test to store your progress.
  2. Click Run to execute the test and view results.

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)

Tips and Tricks

Step Selection

  • Use Ctrl/Command + Click to select multiple steps for execution.
  • To test a subset of steps, select the steps and click Run Selected.

Recording

  • The recording feature is the fastest way to create tests.
  • More information on recording can be found in the Recording Guide.

Now you’re all set to create and run tests efficiently in Revyl AI!