Skip to content

Quickstart

Let’s get a test running. Three minutes, no setup, nothing to install.

You need:

  • A Marriska account (sign up — Free plan, no card)
  • A modern browser

That’s it. Tests run in the cloud on Free, so there’s nothing local to install for this tutorial.

  1. Sign in and open Tests

    After signup you’ll land on the Dashboard. Click Tests in the top nav (or the bottom bar on mobile).

  2. Create a new test

    Click New Test in the explorer sidebar (or right-click the explorer and pick New Test from the context menu). Give it a name and confirm.

  3. Describe the test in plain English

    The editor opens with a description box. Paste this in:

    Open https://example.com
    Check that "Example Domain" is visible on the page
    Take a screenshot

    Click Generate Steps. The parser turns each line into a structured action — you’ll see the steps appear underneath the description.

  4. Run it

    Click Run Test. Pick Chromium (or all three browsers if you want). Step events stream back live — green checkmarks, durations, and screenshots fill in as Playwright works through the steps.

  5. Open the report

    When the run finishes, the Reports page has the row you just created. Click it for the full per-step view: status, screenshots, timing, and a stable URL you can share with anyone in your org.

You wrote three sentences and Marriska:

  1. Translated each into a Playwright action (page.goto, expect().toBeVisible, page.screenshot)
  2. Spun up a real Chromium browser in the cloud
  3. Ran the steps, captured screenshots at each one
  4. Persisted everything as a shareable report

No Selenium grid, no WebDriver setup, no Node install.