Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Robot Framework
  • Selenium2Library (or just SeleniumLibrary)
  • Java (if using the Java variant of the "robot framework")

...

Code Block
titlelogin_tests/valid_login.robot
*** Settings ***
Documentation     A test suite with a single test for valid login.
...
...               This test has a workflow that is created using keywords in
...               the imported resource file.
Resource          resource.robot
*** Test Cases ***
Valid Login
    [Tags]  CALC-1|  CALC-2
    Open Browser To Login Page
    Input Username    admin
    Input Password    admin
    Submit Credentials
    Welcome Page Should Be Open
    [Teardown]    Close Browser

...