in Robot Framework version 4: robot --variable arg1:%Arg1% --variable arg2:%Arg2% ArgumentsDemo.robot arg1 & arg2 params are created in the test case Arg1 & Arg2 arguments are created in Jenkins *** Settings *** Documentation testing arguments in robot framework *** Variables *** ${arg1} ${arg2} *** Test Cases *** Argument demo [Documentation] testing arguments Test Case 1 ${arg1} ${arg2} *** Keywords *** Test Case 1 [Documentation] testing arguments [Arguments] ${arg1} ${arg2} Log To Console ${arg1} ${arg2}
Hu thanks for the video. very helpfull. Do you have a video on configuring the resource root url
Hi! I have an issue with the open browser when my tests run(build) in Jenkins. Do you have any idea why this happened? (test run from github)
I am not getting you can you please give me a detailed info
When I run the build it's running only in headless mode I can't see the browser running how to change that
in Robot Framework version 4:
robot --variable arg1:%Arg1% --variable arg2:%Arg2% ArgumentsDemo.robot
arg1 & arg2 params are created in the test case
Arg1 & Arg2 arguments are created in Jenkins
*** Settings ***
Documentation testing arguments in robot framework
*** Variables ***
${arg1}
${arg2}
*** Test Cases ***
Argument demo
[Documentation] testing arguments
Test Case 1 ${arg1} ${arg2}
*** Keywords ***
Test Case 1
[Documentation] testing arguments
[Arguments] ${arg1} ${arg2}
Log To Console ${arg1} ${arg2}