Telerik Forums
Test Studio Forum
3 answers
174 views
I have a list of tests which were created in a particular environment and going forward we will want to run in many different environments (Different URLs). It isn't that big of a deal when I run them on my local machine; the URLs are driven from a csv file, and I manually update the base URL in the settings of the test lists. 

However, we are putting these tests in BAMBOO (the release management tool), and are looking to allow the testers the ability to enter in the URL in a centralized location and run the tests on a remote machine. Is this possible to update the base url and data-driven url in a single step? 

Is there also a way to use local data source to drive the navigate steps? It appears the only option is for an external binding file (csv, xml, etc.)

Thanks - Jim

Jim
Top achievements
Rank 1
 answered on 04 Jun 2013
3 answers
104 views
I have a menu that if a mouse hover it, the menu will reveal a sub menu. What I want to do is checking the sub menu href link. 

My problem is: 

when i record it, I can reveal the sub menu, but the sub menu disappeared when i clicking the big blue button( the button that appeared when you hover something long enough).

What should i do to check the sub menu href?
Plamen
Telerik team
 answered on 03 Jun 2013
1 answer
57 views
Hi,

we are facing a basic issue , where we are  Not able to run more than 10 Test cases in a test list . we are using latest telerik version of test studiio.

Also , whenever we install newer version of telerik, some of the telerik controls in our application are not recognized . 

can we have both of this issue resolved as soon as possible ?

we have been working with support folks through a ticket, but the process is taking lot of time to resolve. 

Any help to expedite to provide solution is highly appreciated.

Thanks
Girish K R
Ivaylo
Telerik team
 answered on 03 Jun 2013
5 answers
89 views
Hey everybody,

I was do my tests with grid controls and i found one litle big problem. For example, I have one grid with scroll and many rows, every row has 2 columns. My test will go search a cell in a row by content. graphically that row and cell wasn't visible, but in the log output the row and cell are visible.

anyone have an explanation for this strange case????

thanks for now

José Teles
Velin Koychev
Telerik team
 answered on 31 May 2013
3 answers
144 views
I have an IFrame on a page in a website I'm testing.  My client wants to verify the URL the data is being pulled from is not changing because it is admin-able and there are several similar URLs that could be feeding data to the IFrame depending on setup.  Is there any way in the Test Studio tool to verify the URL in an IFrame?
Plamen
Telerik team
 answered on 31 May 2013
1 answer
76 views
Hi Telerik Team,

When starting Test Studio client (no other applications running), it takes around 20-25s for the application to load. When I connect to TFS, there is an additional 45-50s wait time until the "Communicating with Server" window appears which then takes another 15-20s to complete. My question is, is this normal? My system specs exceed the recommended specs listed here (http://www.telerik.com/automated-testing-tools/products/system-requirements.aspx). I am using the 2012.2.1527.0 version.

Thank you for any help.

James
Ivaylo
Telerik team
 answered on 31 May 2013
3 answers
76 views
Why does the email address field not accept txt addresses as valid?  For instance I'd like to receive a text when a test list fails and the email address is in this format. 9995558888@txt.att.net Is there any way around this validation issue?
Ivaylo
Telerik team
 answered on 31 May 2013
15 answers
192 views
I have a test set up that logs in, selects/enters some values then submits to the next page and does a verify.
It then clicks a hyperlink in a contents section that is in a usercontrol in a masterpage place holder to return to the first data entry page and then it iterates through a dataset to select/enter values and submits again.

The baseurl is set to the primary location,
The nagivateURL in the first step is set to /
The compare is set to Title for all elements in the tests (part of the test is a fragment).

This runs fine on the initial run through.

When I set it up as a test list using the primary location as the baseurl it works fine.

When I close the test list and set the baseurl as the secondary location, it falls over when trying to click the hyperlink in the user control and I get this in the log:

Unable to find the target host (Browser/SilverlightApp) to locate an element. Failure: System.TimeoutException: Wait for condition has timed out
   at ArtOfTest.Common.WaitSync.CheckResult(WaitSync wait, String extraExceptionInfo)
   at ArtOfTest.Common.WaitSync.For[T,V](Func`3 func, T target, V custom, Boolean invertCondition, Int32 timeout)
   at ArtOfTest.Common.WaitSync.For[T,V](Func`3 func, T target, V custom, Int32 timeout)
   at ArtOfTest.WebAii.Core.Browser.WaitForFrame(FrameInfo frameInfo, Int32 timeout)
   at ArtOfTest.WebAii.Design.Execution.ExecutionUtils.GetFrameBrowserInstance(Browser topBrowser, FrameInfo frame, Int32 waitTimeout, String& stringError)

I originally had the test set up to iterate to the 2nd location via a dataset and was getting the same issue so found an alternative suggestion but am getting the same problem.

Any suggestions?

Thanks
Boyan Boev
Telerik team
 answered on 31 May 2013
1 answer
142 views

I'm trying to click the check box with record and playback, on play back the system is not invoked.  I'm trying to have it do a real mouse click, any ideas?  I would like the option to select by Text of the check and the item number.

Telerik.WebAii.Controls.Html.RadListBox listBox = ActiveBrowser.Find.ById<Telerik.WebAii.Controls.Html.RadListBox>("ctl00_cphTracerPage_rcmbTracersTemplate");

            foreach (Telerik.WebAii.Controls.Html.RadListBoxItem lbItem  in listBox.Items)

            {

                bItem.ScrollToVisible();

                lbItem.Click();

                lbItem.Select();

                Log.WriteLine("List Item: " + lbItem.ToString());

            }


<div class="RadListBox RadListBox_Office2010Blue RadListBoxScrollable" id="ctl00_cphTracerPage_rcmbTracersTemplate" style="width: 300px; height: 400px;">
<div class="rlbGroup rlbGroupRight">
<ul class="rlbList">
<li class="rlbItem rlbHovered" id="ctl00_cphTracerPage_rcmbTracersTemplate_i0">
<input class="rlbCheck" type="checkbox">
<span class="rlbText">JCR - CT Scan</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i1">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Emergency Management</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i2">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Endoscopy</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i3">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Environment of Care</span>
</li><li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i4">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - EOC Rounds</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i5">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Equipment Cleaning and Low Level Disinfection</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i6">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Human Resources</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i7">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Infection Prevention and Control</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i8">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Infection Prevention/Isolation</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i9">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Information Management</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i10">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Information System-2nd Generation</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i11">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Inpatient Generic Tracer</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i12">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Labor and Delivery</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i13">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Leadership</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i14">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Life Safety</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i15">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Medical Staff</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i16">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Medication Management_v2</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i17">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - MRI</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i18">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - National Patient Safety Goals_v2</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i19">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Nursing_v2</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i20">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Outpatient Clinic</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i21">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Pain Assessment-Reassessment</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i22">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Pain Management</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i23">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Patient Flow</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i24">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Performance Improvement</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i25">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Phlebotomy Observation</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i26">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Provision of Care_v2</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i27">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Radiology</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i28">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Record of Care</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i29">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Rights and Responsibilities of Individuals</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i30">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Surgical Patient</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i31">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Tissue Management</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i32">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Transplant Safety</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i33">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Ultrasound</span></li>
<li class="rlbItem" id="ctl00_cphTracerPage_rcmbTracersTemplate_i34">
<input class="rlbCheck" type="checkbox"><span class="rlbText">JCR - Waived Testing</span></li>
</ul></div>
<input name="ctl00_cphTracerPage_rcmbTracersTemplate_ClientState" id="ctl00_cphTracerPage_rcmbTracersTemplate_ClientState" type="hidden" value='{"isEnabled":true,"logEntries":[],"selectedIndices":[],"checkedIndices":[],"scrollPosition":0}' autocomplete="off">
</div>
 
             
Plamen
Telerik team
 answered on 30 May 2013
1 answer
62 views
Hi,

We want to have a test which logs into our silverlight app (Step 1) and then performs a number of other steps ( Step 2-20).

We want step 1 to occur once and then steps 2-20 to repeat for every row in our test data?

The scenario would play out that a user logs in once and then say adds many records according to our test data.

Is this possible; any pointers?

Jason
Velin Koychev
Telerik team
 answered on 30 May 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?