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

Поделиться
HTML-код
  • Опубликовано: 2 дек 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 8 месяцев назад

      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}