Forum Discussion

praveenskg's avatar
praveenskg
Contributor
2 years ago
Solved

Session Creator commandline arguments goes lenghty

In my current setup to execute tests from CICD on dedicated VDi machine, we are using session creator utility. I am able to run it using powershell command. However when it comes to maintenance the c...
  • rraghvani's avatar
    2 years ago

    I still don't quite understand the purpose. However, why not create a batch file or PowerShell script file that has all the required parameters and variables, which you can modify. You can also have variables defined in your CI/CD too.

    It's possible to merge all of these,

    /arg:/pv:browser=$TC_Browser 
    /arg:/pv:update_zephyr=$Zephyr_flag
    /arg:/pv:zephyrscale_token=$Zephyr_Token

    into one variable, but you will then require a function to split this into individual sections.

    Either way, it's going to be lengthy.