LogoLogo
  • Hello Autokin
  • Get started
  • Your First Autokin Test
  • Features
    • Tags
    • Chaining
    • JSON Schema Comparison
    • Variables
    • Autokin Generators
  • Autokin REST
    • Given Steps
    • When Steps
    • Then Steps
  • Autokin Web
    • Given Steps
    • When Steps
    • Then Steps
    • Supported Emulated Devices
  • Autokin Mobile
    • Give Steps
    • When Steps
    • Then Steps
  • Development Tools
    • VS Code Extension
  • Resources
    • Autokin Github
    • Contributors
    • Frequently Asked Questions
Powered by GitBook
On this page
  • When I navigate to {url path}
  • When I set {value} to input element with {CSS selector} selector
  • When I click on {CSS selector}
  • When I hover on {CSS selector}

Was this helpful?

  1. Autokin Web

When Steps

Autokin Web Steps

When I navigate to {url path}

Navigate to certain URL path that is relative to the main application host URL.

Scenario: Autokin Web
    Given that an application is hosted at "https://www.autokinjs.com"
    Given that I set the browser window size to "1200" and "800"
    When I navigate to "/docs/devices"

When I set {value} to input element with {CSS selector} selector

Typing or setting value to an input field or element

Scenario: Autokin Web
    Given that an application is hosted at "https://www.autokinjs.com"
    Given that I set the browser window size to "1200" and "800"
    When I navigate to "/docs/devices"
    When I set "Hello" to input element with "#welcomeIdField"

When I click on {CSS selector}

Performing click action on any element based on CSS selector

Scenario: Autokin Web
    Given that an application is hosted at "https://www.autokinjs.com"
    Given that I set the browser window size to "1200" and "800"
    When I navigate to "/docs/devices"
    When I set "myusername" to input element with "#username"
    When I set "mypassword" to input element with "#password"
    When I click on "#loginbtn"

When I hover on {CSS selector}

Moves the cursor over certain CSS selector to trigger hover effect if needed

Scenario: Autokin Web
    Given that an application is hosted at "https://www.autokinjs.com"
    Given that I set the browser window size to "1200" and "800"
    When I navigate to "/docs/devices"
    When I set "myusername" to input element with "#username"
    When I set "mypassword" to input element with "#password"
    When I hover on "#loginbtn"
PreviousGiven StepsNextThen Steps

Last updated 4 years ago

Was this helpful?