BaseURL
Specific server/company I’m testing
Remainder of URL (I was on same page for all three when I copied URL.)
User ID (my logged user ID (system assigned))
System.Diagnostics.ProcessStartInfo psi = new ProcessStartInfo();
psi.WorkingDirectory = @"C:\Program Files (x86)\Telerik\Test Studio 2011.1\Bin\";
psi.FileName = "ArtOfTest.Runner.exe";
psi.UseShellExecute = false;
psi.Arguments = " list=" + "\"" + @"C:\Users\xxxxx\Documents\Test Studio Projects\IndividualScripts\TestLists\testdatabind.aiilist" + "\"";
Process p = Process.Start(psi);
p.WaitForExit();
----------------------------------------------------------------------------------------------------------------------
My current scenario:
now am binding the datasources(excel files) to individual test sciprts(test1,test2) and adding then as list and executing them by running over command prompt wth artofrunner.exe...code show above...pls chk it...
My requirement :
now i need like.....thru code i want to set datasources(excel files) to individual test scripts(test1, test2)...and adding then as list and executing them ...
can you please tell/help me in identyfing the procedure for dynamically adding datasources to individual test scripts....
thnaks in advance....
am involving in the preparing the DEMO of some application using this telerik test studio....
Thanks.,
Hari