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
<CodedStep(
"New Coded Step"
)> _
Public
Sub
resize_CodedStep2()
' ActiveBrowser.ResizeContent()
activebrowser.ResizeContent(0,0,1024,690)
End
Sub
'8-9-2011 14:36:18' - System.ArgumentException: Unable to find the test class type 'test_08091120' in your test assembly. Please make sure your test code behind is compiled with your latest changes.
I have parameterized one script but I find for every value script start to execute from the beginning.
I want to execute the particular step for different values on the open web page rather navigate from the begging.
Could you please help me out?
Desktop desktop = new Desktop();
desktop.KeyBoard.KeyPress(Keys.Back, 1, repeatCount);
desktop.KeyBoard.TypeText(text, 2, 0);