I have tests designed as a login test for each environment in a single test file with If...else statement. But i would like to give the other team members to execute without changing anything in the script (i.e basically i wanted to give a batch file with a all the tests or TestList), so i when they click a batch file a popup/dialog comes with different test environments (Dev, UAT, FAT, etc.,) and when the user selects then all the tests will run on that environment, without changing anything or opening up the test studio or or changing the URL in the login tests. The reason is they are business users and they are not aware of any technical things and what they have asked me is like a kind of batch file in the remote PC so that they can click and get the results whether the tests are passed/failed. Now the way i have designed my tests and running so far is: Test A -- Contains login steps for all environment, until now before running each list/test i would go and select the steps i want to login for that environment. Test B -- has steps for the application navigation this test B at the top contains TEST A (as Test in step) which runs login steps first and then my other steps from Test B, without any issues. The issue now is the business users doesn't want to or don't know which steps for login to select each and every time they want to run the test in remote server, rather they want a single click file (like a batch file). Can i request this as a future feature request for Test Studio to handle this sort of scenario as and when business users want to run the tests with a click of a button it was impossible it seems now unless they open test studio and make some changes to script or URL, which is what i am trying to avoid. Rather i would like to have users to select the environment from a drop-down dialog and we can script based on the logical condition form capturing the user selection. Thanks