Telerik Forums
Test Studio Forum
3 answers
89 views

Hi

I am trying to call/execute Test1 in Test 2. Basically I am creating basic  CRUD tests on UI and I have test for Login and trying to below scenarios.

1) Creating Login Test  - Done . I have modularized it and combined login steps into one CodedStep_Login()

2) Creating 'Create' Test - Done

3) Now I want to execute login steps in 'Create' test .  Is it possible to call CodedStep_Login() into Create Test?

   How to verify that Login is passed and if so execute create test.

Appreciate you help.

Thanks,

-

Shree

 

 

 

 

Vera
Telerik team
 answered on 04 Jun 2018
3 answers
111 views

I am having issues with fields being focussed to the top underneath a DIV in our web app. Is this still the only solution?

 

Posted 09 Dec 2015Link to this post
Hello Uroš,

This is a somewhat common problem. Your application has an overlay <div> element at the top of the browser window. Test Studio, when you have SimulateRealTyping, selected always wants to scroll the element to the top of the browser window in order to make sure it's visible in the browsers window before trying to type into the input box. Unfortunately in your case this has the side effect of scrolling it underneath your overlay div.

The only way to over come this is to convert the step to code then comment out the ScrollToVisible line of code, like this:
// Enter text 'passUser' in 'UsernameText'
Actions.SetText(Pages.CAFFA.UsernameText, "");
//Pages.CAFFA.UsernameText.ScrollToVisible(ArtOfTest.WebAii.Core.ScrollToVisibleType.ElementTopAtWindowTop);
ActiveBrowser.Window.SetFocus();
Pages.CAFFA.UsernameText.Focus();
Pages.CAFFA.UsernameText.MouseClick();
Manager.Desktop.KeyBoard.TypeText("passUser", 50, 100, true);
The side effect is now you have to take extra care to insure the input box is visible before that step runs. Else typing won't go into that input field.

Vera
Telerik team
 answered on 31 May 2018
8 answers
153 views

Hi all,

we're using Test Studio (ultimate edition, trial version) and we're evaluating if this tool is compliant with our needs.

We are stuck in a particular record sequence: we have a Main window inside of which we have a dialog box overlapped to another one. The issue is that Telerik doesn't record the actions of the top dialog box.

Is it possible to resolve this problem?

Thank you in advance

Christian

Vera
Telerik team
 answered on 30 May 2018
3 answers
284 views
Hi,

I'mdoing a eval for my company of Test Studio, and so far the bake tests are going well wiht the functions that we would like to implement it.  I just have one quesiton:  Is there a way to capture the javascript console normally captured in IE's Developer Tools or FireFox (via Firebug) logs.

Is this something that can be done within Test Studio or should I look to try and solve this issue with C#? 

Thank you,
Carl
Elena
Telerik team
 answered on 30 May 2018
3 answers
165 views

Hello

One of our users is presenting problems when she is working on TestStudio. At the moment of capturing traffic, ArtOfTest.Runner crashes everytime randomly on 1 step out of 1000. We are using Chrome since it is the neccesary browser for our work.

The laptop has a processor of 2,30 GHz, 8Gb of RAM (we tried one time with 12Gb but it happened the same error), we even tried with another laptop with similar characteristics and still fails. The OS is Windows 10 x64.

 

How can i resolve this?

Thanks in advance.

 

 

Elena
Telerik team
 answered on 30 May 2018
18 answers
263 views

Hi,

I am trying test  a native app using test studio mobile testing (android). the app is installing in the device but when I click the record button, a error message is displaying saying "command to message server time out". before recording, I did the below steps

1.installed the agent app from the android app store in to the mobile device

2. connected the device and configured the android app to be testable using the build in configuration

3. selected the device for recording and selected the app identifier 

 

can you please tell me why is this happening. Is it a issue in the apk i am using?

 

you can download the apk file from the below link

https://www.dropbox.com/s/h0xip5bq9y73hu3/Assura%20Premium%201.5.4.apk?dl=0

Elena
Telerik team
 answered on 28 May 2018
3 answers
107 views

Hi guys,

I've having trouble detecting an element using Telerik Test Studio. It's an element in Sharepoint Online in IE11.

I'm looking to click and select the "Business Development CORP Set" selection as shown in image (Business Development CORP set.PNG) but Telerik Test Studio can't detect the element. 

When i use normal recording option, Telerik just able to detect the container of the selections but no the individual selections. (Cointaner.PNG)

I tried using coded step based on the DOM but still unable to detect the particular selection and the assert fails. As the element is nested in the DOM, i used these codes : 

Element documentSet = Find.ByAttributes("id=ctl00_PlaceHolderMain_ctl00_SelectCandidate", "multiple=multiple" ,"value=0x0120D520002D8D5909BD994D82BE83C7681DC18B2F");

 Assert.IsNotNull(documentSet , "Record not found.");
 ActiveBrowser.Actions.Click(documentSet)

Here's the screen shot of the DOM (DOM1.PNG). As there are two values for "title" parameter, i had to use the "value" parameter. (Tried "title =Business Development CORP Set") but still unable to detect. 

Here's are the tags as per image DOM1.PNG

<select name="ctl00$PlaceHolderMain$ctl00$SelectCandidate" title="Possible values" id="ctl00_PlaceHolderMain_ctl00_SelectCandidate" style="width: 190px; height: 150px; overflow: auto;" ondblclick="GipAddSelectedItems(ctl00_PlaceHolderMain_ctl00_Picker_m); return false" onchange="GipSelectCandidateItems(ctl00_PlaceHolderMain_ctl00_Picker_m);" multiple="multiple">

<option title="Business Development CORP Set" value="0x0120D520002D8D5909BD994D82BE83C7681DC18B2F">Business Development CORP Set</option>

Hope you guys can give some guides :)

Thanks,

Pravin

 

 

 

Vera
Telerik team
 answered on 25 May 2018
5 answers
118 views

Hi , 

I am facing Anti- Forgery issues when performing Load Testing . I am not sure how to handle dynamic values for each sessions per page. 

 

Please find attached screenshot  same.

 

Thanks,

Noorain 

 

 

Elena
Telerik team
 answered on 22 May 2018
3 answers
481 views

Hi all,

I'm using Test Studio (ultimate edition). I have two different WPF applications for which I have to record the test steps.
Problem is that I would like to perform the recording simultaneously for both the applications, so that they can interact one with each other. 
In other words I would like that, at a given step test, an application can invoke (or launch) the other one in the same project.
Is this possible? What is the procedure to follow to achieve this?
Thank you 

br

Christian

Vera
Telerik team
 answered on 21 May 2018
1 answer
67 views

Hi,

I'm use trial version. I have problem about multi select KendoUI when I record test script on multi select object finish. Then I execute test script. System cannot run pass on this object (see picture). 

How can I resolve this?

Thanks,
Nut

Vera
Telerik team
 answered on 18 May 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?