Telerik Forums
Test Studio Forum
4 answers
185 views


Hi ,

I’m new to Telerik Test Studio and work on Silverlight application
inside Visual Studio. Application flow is following: user opens html page logs
in and on success the application opens new browser window with a Silverlight application.
 I created multiple tests in code – works
fine.  The issue I have that each test
opens new browser window (very time consuming) .  Is there a way connect to already open
browser window  from the Manger ? I know that in Microsoft CUIT it is pretty easy to do.

Ivaylo
Telerik team
 answered on 08 May 2015
11 answers
127 views
We have run into an issue with the latest release that is effecting our users that have a Windows 8 machine using IE11.  When they are recording test and the have the highlight turned on for element verification and other tool uses their browsers will lock up/freeze and they are forced to kill the process. 

Is this a known issue or does anyone know a work around? We are currently considering rolling back the update to the previous version or having them run Test Studio using a Windows 7 VM. 
Boyan Boev
Telerik team
 answered on 08 May 2015
6 answers
239 views

Hello

I am getting this error when I try to run a recorded web test against internet explorer:

System.ApplicationException: Exception thrown attempting to launch Internet Explorer. Please make sure Internet Explorer is properly installed and you are able to launch it.

The internet explorer window opens up, but nothing else happens, the pages starys on About:Blank

There are numerous posts on this forum which tell you to disable browser plugins and a few others. is there any definitive place where all the causes are stored in a kb article?

Cheers
Alex

Ivaylo
Telerik team
 answered on 07 May 2015
1 answer
56 views

I am using telerik demo in which I am trying to run a web test. But when it is recording, the application is crashing and I have to reopen the app again,

I need to know the problem. Please help me.Attached is the log file.

Cody
Telerik team
 answered on 07 May 2015
3 answers
166 views

Hi,

Posting for a colleague who's unable to calibrate her browser, she'll be using Telerik for the first time.

Tried thrice calibrating and ended up with the same results.

Ivaylo
Telerik team
 answered on 06 May 2015
2 answers
147 views

We have a page that enables some controls when a checkbox is checked.   Everything looks great when recording a test to validate that the controls are enabled, however when the test is run - the checkbox shows as checked - but the controls do not show as enabled.

 

Here's the javascript for enable/disable the controls:

<input name="_ctl0:ContentMain:tabGeneral:_hiddenPerformDetection" type="hidden" id="_ctl0_ContentMain_tabGeneral__hiddenPerformDetection" value="True" />
<script type="text/javascript">
    $(function () {        $('#_ctl0_ContentMain_tabGeneral__dataSourceIsActiveCheckBox').click(function () {            if (this.checked) {
                $('#_ctl0_ContentMain_tabGeneral__onUsDays').removeAttr('disabled');
                $('#_ctl0_ContentMain_tabGeneral__transitDays').removeAttr('disabled');
                $('#_ctl0_ContentMain_tabGeneral__defaultPriorityDropDown').removeAttr('disabled');
                $('#_ctl0_ContentMain_tabGeneral__imageSupportEnabledCheckBox').removeAttr('disabled');
                $('#_ctl0_ContentMain_tabGeneral__itemDetectionIsEnabledCheckBox').removeAttr('disabled');
                $('#_ctl0_ContentMain_tabGeneral__buttonsRow').removeAttr('disabled');            }
            else {
                $('#_ctl0_ContentMain_tabGeneral__onUsDays').attr('disabled', true);
                $('#_ctl0_ContentMain_tabGeneral__transitDays').attr('disabled', true);
                $('#_ctl0_ContentMain_tabGeneral__defaultPriorityDropDown').attr('disabled', true);
                $('#_ctl0_ContentMain_tabGeneral__imageSupportEnabledCheckBox').attr('disabled', true);
                $('#_ctl0_ContentMain_tabGeneral__itemDetectionIsEnabledCheckBox').attr('disabled', true);
                $('#_ctl0_ContentMain_tabGeneral__buttonsRow').attr('disabled', true);            }

 

Any help on getting this working would be appreciated.

 

Stuart.

Boyan Boev
Telerik team
 answered on 06 May 2015
1 answer
89 views
We have the following question.

In our application we have multiple instances of tables with
mutliple rows and columns

What we would like to do is the following.

Say we have a unique text “Santaclaus” that can be found in a
cell of the 2nd column and in the 3rd column an ID of the record in question is
displayed.

Our question is that the following : Is it possible to
perform the following sequence without programming, since not all our testers
can program or are willing to program.
1) Find the row in which the search text is located.
2) select another cell in the row identified in step 1
3) Perform an action in the other cell. E.g. Click, perform a get, etc.
Ivaylo
Telerik team
 answered on 06 May 2015
1 answer
64 views

Hi,

I don't understand why my report not display % passed, %failed.

I have run successful.

Cody
Telerik team
 answered on 01 May 2015
4 answers
206 views

Hi,

 

I can't seem to figure out how can I get TS so select a value from a combobox.

I've tried to record clicking on the combobox button to open it and then clicking on a value, but this does not execute properly.

After searching on the forum and found this thread (http://www.telerik.com/forums/how-to-select-from-drop-down-list) I also tried the following code, but this also doesn't work.

// Enter text 'Audi' in 'Text'
Pages.LusitaniaSimuladorMotore26.Span.Click();
            
HtmlSelect marca = ActiveBrowser.Find.ById<HtmlSelect>("marcas");
                    
marca.SelectByValue("Audi");

 With the above code I can see that the combobox opens, but no value is selected.

The HTML of the page is

<div id="marcas_id_div"><select id="marcas" onchange="javascript:ResetTotais(); ResetVersao(); ResetVeiculoInfo(); GetVersoes(false); CarregarVariaveis(0, 0, this.name);" name="marcas" style="width: 270px; display: none;"><option value=""> </option><option value="Abarth">Abarth </option><option value="Alfa Romeo">Alfa Romeo </option><option value="Aston Martin">Aston Martin </option><option value="Audi">Audi </option><option value="Bentley">Bentley </option><option value="Bmw">Bmw </option><option value="Chevrolet">Chevrolet </option></select><span class="ui-combobox"><input class="ui-state-default ui-combobox-input ui-autocomplete-input ui-widget ui-widget-content ui-corner-left" style="padding: 0 5px; height: 22px;" autocomplete="off" role="textbox" aria-autocomplete="list" aria-haspopup="true"><a class="ui-button ui-widget ui-state-default ui-button-icon-only ui-corner-right ui-combobox-toggle" tabindex="-1" title="Mostrar Todos Os Itens" role="button" aria-disabled="false" style=""><span class="ui-button-icon-primary ui-icon ui-icon-triangle-1-s"></span><span class="ui-button-text"></span></a></span></div>

 

Please help me.

 

Thanks,

Luis

Ivaylo
Telerik team
 answered on 01 May 2015
1 answer
50 views

Hi,

    While executing the test "Reload/Unresponsive" page coming after completing 3rd or 4th iteration. Herewith I have attached the image, Kindly verify it. If any one know the reason "Why this coming?". Kindly inform me...

Cody
Telerik team
 answered on 28 Apr 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?