Telerik Forums
Test Studio Forum
1 answer
104 views

Hello,

 

I am running into trouble when downloading my telerik tests that were built by an external entity. I am using Telerik to call certain tests as steps, and they continue to fail because the Unique ID assigned to the test step does not match the ID in the full run of steps. 

 

 I am looking for a solution to this that does not require that i break out each "test as step" into their own steps. From what I can tell, you can't alter the UniqueID of the step, but you can ask the tests to access a different UniqueID. This is not ideal as I would still need to alter each test to be current.

Boyan Boev
Telerik team
 answered on 10 Jul 2015
1 answer
126 views

Hi,

I am trying to execute one tests. This page contains multiple iFrames. Even during recording, recorder is crashing. When I am trying to execute it it's also crashing IE. 

Please find the attached screenshot for the error log.

I have attached the test project as well. If you execute it you'll see that test runner is dying immediately.

 

Regards,

Boyan Boev
Telerik team
 answered on 10 Jul 2015
5 answers
136 views

Hi all,

I have an issue with a TableCell value.
I edit an html table row via form, but when i check if it is edited it give me error.
Looking into the TableCell with the QuickWatch (I'm using VS plugin) i see that the TextContent has still the old value while only the InnerMarkup is correct.

I saw the different between InnerMarkup, InnerText and similar, here
The problem is that into the DOM Explorer i have <td>00000 edited</td>, and in an adiacent td of the same row, the TextContent is correct.

Can you help me?

 

Thanks for the support

Davide

Ivaylo
Telerik team
 answered on 10 Jul 2015
3 answers
124 views
How do we know whether the tests are failing from multiusers or it is just slow? Are the tests done from where?
Cody
Telerik team
 answered on 09 Jul 2015
5 answers
174 views

Hi, I just started using telerik test studio version 2015.1.319 and whenever I try a test with a popup window, I can record in any browser but the playback only works with IE. Both FF and Chrome through an error(chrome actually just hangs). I tried the fix from (http://docs.telerik.com/teststudio/testing-framework/frequently-asked-questions) which suggests the modification

"Manager.SetNewBrowserTracking(true);

Manager.WaitForNewBrowserConnect("detail", true, 30000);

Manager.SetNewBrowserTracking(false);"

but that didn't work for either chrome or FF

here is the exception details

"ArtOfTest.Common.Design.Exceptions.ExecutionException: Exception thrown executing coded step: '[fixFFpopup_CodedStep] : Connect to pop-up window : 'http://10.100.1.108:600/BackEnd/FreeArea', ConnectToPopup=true'. ---> System.OperationCanceledException: Exception occurred waiting for the new browser to connect. ---> System.TimeoutException: Wait for condition has timed out
   at ArtOfTest.Common.WaitSync.CheckResult(WaitSync wait, String extraExceptionInfo, Object target)
   at ArtOfTest.Common.WaitSync.For[T](Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout, WaitResultType errorResultType)
   at ArtOfTest.Common.WaitSync.For[T](Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout)
   at ArtOfTest.WebAii.Core.Manager.WaitForNewBrowserConnect(String url, Boolean isPartial, Int32 timeout)
   --- End of inner exception stack trace ---
   at ArtOfTest.WebAii.Core.Manager.WaitForNewBrowserConnect(String url, Boolean isPartial, Int32 timeout)
   at TestProject4.fixFFpopup.fixFFpopup_CodedStep() in c:\Users\abdallah\Documents\Test Studio Projects\TestProject4\fixFFpopup.tstest.cs:line 54
   --- End of inner exception stack trace ---
   at ArtOfTest.WebAii.Design.Execution.ExecutionEngine.ExecuteCodedStep(AutomationStep step, Object codeBehindInstance, StepsTracer tracer, AutomationStepResult result)"

Hope to hear from you soon;

Abdallah

Briar
Top achievements
Rank 1
 answered on 09 Jul 2015
3 answers
46 views

Hello,

We are evaluating your product and trying to create a few simple automated UI tests in WPF. However, when we try and record opening few windows (just 3 or 4 clicks), we either have:

 

1) The host app crashing

2) The popup in "highlighting" mode hangs (looks like a deadlock), recording tools stop responding

 

Unfortunately I cannot give you our app, but maybe I can somehow enable logging to provide more information?

Konstantin Petkov
Telerik team
 answered on 09 Jul 2015
1 answer
96 views

It's seriously the last place I'd look for log files. Tried %appdata%, %localappdata%, %documents%, but never expected it to be in program files. Can you please apply best practices and move the log files?

 

Thanks!

Ivaylo
Telerik team
 answered on 09 Jul 2015
3 answers
201 views

Hi There, 

 

We've had intermittent issues with the Recording toolbar not appearing when trying to record tests, usually restarting Test Studio would resolve this, however since we purchased it appears to have gone altogether, whenever we record a test we are able to record steps, and create tests, but the recording toolbar just is not there. We're recording using Chrome, in Windows 8.1 does anyone know how to get the toolbar back? 

 

Thanks! 

Ivaylo
Telerik team
 answered on 08 Jul 2015
4 answers
373 views

When first trying the software on a WPF app, it was using the [TextBlockValue]TextBlock for the names. Since the value of the text block can change (and we need to check whether the name is valid), I added x:Uid to all elements we want to test.

However, it looks like test studio is still preferring [TextBlockValue]TextBlock instead of the x:Uid to search for the element. Is there any way we can force Test Studio to look at the x:Uid instead?

Thanks!

Ivaylo
Telerik team
 answered on 08 Jul 2015
14 answers
181 views

Hi,

I extract values from more elements and I want then to choose randomly one of them:

1. Extract selection 'ByValue' on 'Normalpreis' into DataBindVariable $(normal_pk)

2. Extract selection 'ByValue' on 'ermasigt' into DataBindVariable $(ermasigt_pk)

2. [Choose_random_price_cat_CodedStep] : Select 'ByValue' option '1' on 'Cat274411276264077Select':

    Dim n_pc As Object = GetExtractedValue("normal_pk")
    Dim e_pc As Object = GetExtractedValue("ermasigt_pk")
            
    Dim norm_pc As String = CType(n_pc, String)
    Dim erma_pc As String = CType(e_pc, String)
            
    Dim random As New System.Random()
    Dim i As Integer = random.[Next](1, 2)
    Dim j As Integer = random.[Next](1, 5)

    Dim avail_pk() As String = {norm_pc, erma_pc}

    'Select 'ByValue' option '1' on 'Cat274411276264077Select'
    Pages.FindEventsWebSales2.avail_pk(i).SelectByValue(j, true) ' originaly instead of avail_pk(i) it was Cat274411276264077Select

    'Invoke jQuery 'select' event'
    Dim jQueryControl As ArtOfTest.WebAii.jQuery.jQueryControl = Pages.FindEventsWebSales2.avail_pk(i).AsjQueryControl
    jQueryControl.InvokejQueryEvent(ArtOfTest.WebAii.jQuery.jQueryControl.jQueryControlEvents.change)

Can anybody help me?

BR, Jurij

 

Ivaylo
Telerik team
 answered on 07 Jul 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?