jscript - parameterization of a “set of scripts” -


i have 1 project automation in testcomplete. project contains scripts organised according our need 1 folder contains 10 scripts , folder contains 15 scripts , on.

we facing problem in when want check specific pre conditions before running set of scripts. ex: 1st folder having 10 scripts , should run when machine has win7 os , ms office 2007 & ie version 10.

it kind of parameterization of “set of scripts”. not keyword word based automation. scripting based. using jscript scripting language.

the way see create special "runner" script every bunch of scripts. script check required conditions , if met, subsequently run tests corresponding group. need run these runner scripts (e.g. using test items), satisfy current environment conditions work , rest exist immediately.

update:

for example:

function testset1() {   // if environment not suit test set, exit   if (false == utilityscripts.checkenvironmentfortestset1())     return;    test1();   test2();   test3(); } 

the code of checkenvironmentfortestset1 routine should perform check os, installed software , whatever need.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -