Jenkins Tutorial #7 - How to Parameterize Browser and URL in Jenkins

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 5

  • @cebisilemabaso8445
    @cebisilemabaso8445 2 роки тому

    Hu thanks for the video. very helpfull. Do you have a video on configuring the resource root url

  • @EvseevaKris
    @EvseevaKris 2 роки тому

    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)

    • @all7014
      @all7014 2 роки тому

      I am not getting you can you please give me a detailed info

    • @kumaranselvaraj7846
      @kumaranselvaraj7846 6 місяців тому

      When I run the build it's running only in headless mode I can't see the browser running how to change that

  • @borhanamini
    @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}