Telerik Forums
Test Studio Forum
1 answer
145 views
Hi All,

Will BaseURL help me to differentiate and access URLs as distinct as these three?

Here are 3 URLs when I logged into my basic system screen, with the parts I understand in color (key below) and a few questions afterwards:

https://gisqual.grinnellmutual.com/DRC01100/Policy/blank.aspx?Status_Activity=Policy&Status_IDMasterGuid=fad720bc-344b-4031-8c96-d33e5c9026c0&Status_CallingLOBPAS=0201&SysRec_User=8139&SysRec_Location=1111&SysRec_Department=1111&SysRec_SystemDate=9/12/2011

 

https://gisqual.grinnellmutual.com/DRC08010/Policy/blank.aspx?Status_Activity=Policy&Status_IDMasterGuid=7a9483d1-8fed-47df-8e46-94b66092efc6&Status_CallingLOBPAS=0201&SysRec_User=8139&SysRec_Location=1111&SysRec_Department=1111&SysRec_SystemDate=9/12/2011

 

https://gisqual.grinnellmutual.com/DRC10029/Policy/blank.aspx?Status_Activity=Policy&Status_IDMasterGuid=1a0efd70-f852-46d4-92ed-6b4c1b7265c5&Status_CallingLOBPAS=0201&SysRec_User=8139&SysRec_Location=1111&SysRec_Department=1111&SysRec_SystemDate=9/12/2011

 

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))


My questions are:

Will the "MasterGuid" cause me any difficulty in record/playback?

What if I want to change up users I'm logged in as?

Any advice on things to watch out for? (Links to articles/posts are fine...I'm pretty new to this.)

Thanks for your time!
Dan
Anthony
Telerik team
 answered on 12 Sep 2011
1 answer
117 views
I'm testing the registration form for my application. I want to use a unique email address (either an incremental integer or maybe a date string).

Is this possible to do via the QA version without writing code? If, not, what other approaches are there to get this working?

Is it possible to then parameterise this value for use by other test steps?

Thanks,
Mark
Stoich
Telerik team
 answered on 12 Sep 2011
5 answers
220 views
Ok so I'm at a grid of contact form submissions...

In my recorded test submission I put in some text like "This is a Test Submission"

So now in the grid I need to find that item...click it, then click a delete button

What's the best way to do that?
Anthony
Telerik team
 answered on 09 Sep 2011
1 answer
119 views
Once my tests have been created I want to be able to automate the cross browser execution from the command line. How do I...

  • call the command line execution of the test?
  • specify which browser to execute the test in?
  •  parametrise the URL against which to execute?

Thanks,
Mark
Anthony
Telerik team
 answered on 09 Sep 2011
2 answers
115 views
In the QA version how do I insert a verification step to an existing test?

Thanks,
Mark
Anthony
Telerik team
 answered on 09 Sep 2011
1 answer
102 views
Hi

I just downloaded the Trail version of Test Studio, so I am very new to everything and have a question.

Where does the app get the names given to the elements (buttons, textboxes, etc)? At first it appeared as if the names were being sucked out of the actual code, but they weren't. So does Test Studio randomly assign names for these elements.
Is in possible to set the app to suck the names out of the code?  

Thanks

*Additionally: Great software and you guys are doing a great job with customer support.
Anthony
Telerik team
 answered on 09 Sep 2011
3 answers
215 views
hello ,
how to click on element in  javascript calendar, by coded steps  ?attached a screen shot of my calendar
this demotrate how I select the date by clicking in its elements ,
thank you
Anthony
Telerik team
 answered on 09 Sep 2011
8 answers
172 views
Hi plamen/cody/stoich,

Good Morning.,

Can you please help me in identifying the procedure for dynamically setting datasource to test scripts.......

let me explain you my scenario:
----------------------------------------------------------------------------------

ArtOfTest.WebAii.Design.Execution.TestInfo test1 = new ArtOfTest.WebAii.Design.Execution.TestInfo(Guid.NewGuid().ToString(), @"C:\Users\xxxxx\Documents\Test Studio Projects\IndividualScripts\" + row.Cells[0].Text + ".tstest");
ArtOfTest.WebAii.Design.Execution.TestInfo test2 = new ArtOfTest.WebAii.Design.Execution.TestInfo(Guid.NewGuid().ToString(), @"C:\Users\xxxxx\Documents\Test Studio Projects\IndividualScripts\" + row.Cells[1].Text + ".tstest");

ArtOfTest.WebAii.Design.Execution.TestList listcol = new ArtOfTest.WebAii.Design.Execution.TestList("testdatabind", "");
listcol.Tests.Add(test1);
listcol.Tests.Add(test2);

listcol.Settings.Web.RecycleBrowser = true;
listcol.Settings.UnexpectedDialogAction = ArtOfTest.WebAii.Core.UnexpectedDialogAction.HandleAndContinue;
listcol.SaveToListFile(@"C:\Users\hvadde\Documents\Test Studio Projects\IndividualScripts");

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

wish
Top achievements
Rank 1
 answered on 08 Sep 2011
3 answers
69 views
OK, first off I am new to this tool so bear with me if this seems newbish.

How do I set a 'radtreeviewitem: item 'item1' select action to accept a different param for the piece labeled 'item1'?

1.  So I create the script, (recorded), and I selected <item1>
2.  Now I want to pass a different item, (item2 for example). 

How can I do this?  I just want to execute the script 99 times with each iteration containing a new item?  I am hoping I don't have to record every item initially for them to be included in the project elements.

Again I am new to this tool.  My background is in QTP which happens to suck with the silverlight tools here so we are trying to get this tool working as the recognition has been the best by far. 
Anthony
Telerik team
 answered on 08 Sep 2011
7 answers
157 views
Hello,

how can I create data-driven Test?

I want to test an registration for a website. The testscenario contains over ten specific testcases, with different results. I need to add different verifications for all these results.
Did anyone know a solution, where i can reuse many fragments?

br Stefan
Anthony
Telerik team
 answered on 08 Sep 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?