While Creating a Master Script i need to define the test scripts as follows
set Testlist to ("Test1","Test2","Test3")
.
My problem is here is that,the path for all the test Scripts are very lengthy(for example- Test1 path is in path (Users/Shared/NewProject.suite/Scripts/FunctionlityA/Test1" ).
Is there any way to simply it.
I tried with
set Searchpaths to {"/Users/Shared/NewProject.suite/Scripts"}
set Testlist to ("~/Test1","~/Test2","~/Test3")
repeat with each testscript of TestList
RunWithNewresults testScript
end repeat
Kindly Suggest me where I’m going wrong and what exact changes i have to make.
Thanks in Advance