Skip to content

Instantly share code, notes, and snippets.

@jaukia
Created March 3, 2020 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaukia/2c6e61c5957d9d50c3b433c18857f2fb to your computer and use it in GitHub Desktop.
Save jaukia/2c6e61c5957d9d50c3b433c18857f2fb to your computer and use it in GitHub Desktop.
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