Hu thanks for the video. very helpfull. Do you have a video on configuring the resource root url
@EvseevaKris2 жыл бұрын
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)
@all70142 жыл бұрын
I am not getting you can you please give me a detailed info
@kumaranselvaraj78467 ай бұрын
When I run the build it's running only in headless mode I can't see the browser running how to change that
@borhanamini Жыл бұрын
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}