For the complete documentation index, see llms.txt. This page is also available as Markdown.

Web Automation

Automate browser-based applications using natural language test steps or the Recorder.

Create automated tests for user journeys such as signing in, submitting forms, navigating pages, validating content, and interacting with complex web applications, all without traditional scripting.

Scenario: Step 1 - Visit testfirst.com and check for "Forgot password?" link
  Given browser "Chrome"
  When I visit "https://www.testfirst.com/"
  And I click "Sign In"
  And I wait for 2 seconds
  Then "Sign In" page is displayed

Scenario: Step 2 - User tries login with a wrong username and password
  When I wait for 2 seconds
  And I visit "https://www.testfirst.com/"
  And I click "Sign In"
  And I type "test_user" in "Username"
  And I type "Password" in "Password"
  And I click "SIGN IN"
  Then "Invalid username/email or password" is displayed

Learn more:

Last updated