Created
March 3, 2020 07:19
-
-
Save jaukia/2c6e61c5957d9d50c3b433c18857f2fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Basic obot program: | |
1. Create a file example : test.robot | |
2. Add the bare minimum code: | |
#--START-- | |
*** Settings *** | |
*** Variables *** | |
*** Test Cases *** | |
HelloRobot | |
[Documentation] Hello Robot | |
Log To Console " print this message robot " | |
*** Keywords *** | |
#--END-- | |
3. Save this code and execute test as : robot test.robot | |
============================================================================== | |
Test | |
============================================================================== | |
HelloRobot :: Hello Robot " print this message robot " | |
HelloRobot :: Hello Robot | PASS | | |
------------------------------------------------------------------------------ | |
Test | PASS | | |
1 critical test, 1 passed, 0 failed | |
1 test total, 1 passed, 0 failed | |
============================================================================== | |
Output: /home/rango/Robot-framework-Tutorials-examples/basics/output.xml | |
Log: /home/rango/Robot-framework-Tutorials-examples/basics/log.html | |
Report: /home/rango/Robot-framework-Tutorials-examples/basics/report.html | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment