Install Robot Framework and Prepare a basic test case

7 years ago
37

In this video i show hot to install Robot framework and prepare a basic test case.

Robot Framework is a generic test automation framework for acceptance testing and acceptance test-driven development (ATDD). It has easy-to-use tabular test data syntax and it utilizes the keyword-driven testing approach. Its testing capabilities can be extended by test libraries implemented either with Python or Java, and users can create new higher-level keywords from existing ones using the same syntax that is used for creating test cases.

The code in video is demo.robot:

*** Settings ***
Documentation It is a demo purpose robot test case
...
... There are two basic case

*** Variables ***
${PARAM1} = 5

*** Test Cases ***
Check value equal
Should be equal ${PARAM1} 5

Loading comments...