Last updated:
0 purchases
robotserver
RobotServer #
A dart module providing the robot framework remote library interface.
Instal robot on mac
Examples robot tests
Usage #
Start your server
final rrs = RobotServer(MyTest('teste'));
rrs.serve();
copied to clipboard
Run robot local robot tests.robot and add yours tests
*** Settings ***
Library Remote http://${ADDRESS}:${PORT} WITH NAME MyTest
*** Variables ***
${ADDRESS} 127.0.0.1
${PORT} 8270
${MESSAGE} Hello, wold!
${isExist} ${TRUE}
${variable1} teste
*** Test Cases ***
Describe myTest
${myTest details} = MyTest.describe
Log ${myTest details}
Should Be True "${variable1}" == "${myTest details}"
Another Test
Should Be Equal ${MESSAGE} Hello, wold!
Should Be Equal ${MESSAGE} Hello, wold!
Run Keyword If ${isExist} is ${FALSE} ELSE No Operation
Gherkin
[Documentation] This test case fails a dry-run
Given Run Keyword If 3 == 4 Fatal Error ELSE No Operation
When Run Keyword If 3 == 4 Fatal Error ELSE No Operation
And Run Keyword If 3 == 4 Fatal Error ELSE No Operation
Then Run Keyword If 3 == 4 Fatal Error ELSE No Operation
No Gherkin
[Documentation] This test case works just fine
Run Keyword If 3 == 4 Fatal Error ELSE No Operation
copied to clipboard
Contributing #
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.