Telerik Forums
Test Studio Forum
1 answer
120 views
Hello,

I've read in the following blog post that you support recording on Firefox 2+, IE 7+, Safari 5+, Chrome 7+ 
http://blogs.globallogic.com/net-web-test-automation-selenium-vs-telerik%E2%80%99s-test-studio 

I am working with the trial version for now,
and I can only record from IE. why?

How can I change it?

Thanks,
Yohai
Plamen
Telerik team
 answered on 17 May 2012
3 answers
86 views
I have an calendar web app that gives the user an RSS page / XML page of today's events. I want to verify that data, but I'm not sure how to get the XML page as as element to read the data.

Here is an example of the XML page:
<?xml version="1.0" encoding="iso-8859-1"?><event><item><title>PROD-1464</title><date>Thursday, April 26, 2012</date><time /><enddate>Saturday, May 26, 2012</enddate><description /><location>Centerville Room 5</location><library>Centerville Library</library><link></link></item><item><title>Ongoing Event</title><date>Wednesday, May 09, 2012</date><time /><enddate>Thursday, May 31, 2012</enddate><description /><location>Centerville Room 5</location><library>Centerville Library</library><link></link></item><item><title>Automation Weekly Recurring Event</title><date>Tuesday, May 15, 2012</date><time>1:00 PM</time><enddate /><description /><location>Centerville Room 4</location><library>Centerville Library</library><link></link></item></event>




Byron
Telerik team
 answered on 16 May 2012
3 answers
122 views

 Hi,

 I tried record & playback for a "Create" screen. All the step runs fine but at the last when the "Save" button is clicked after the data is entered, the page is been redirected to error page. Initially i thought there might be some problem with the network. So i tried to create a new contact manually & it got saved without any error. I used the same test data which i have given in the "Test" in the test studio. I'm not pretty much sure about the issue. Kindly help me in resolving this issue.

Thanks,
Deepa.C
Plamen
Telerik team
 answered on 16 May 2012
2 answers
202 views
Hi Telerik Team,

I am getting below error while inserting text textbox in FF but same code is working fine with IE.

Target '[Element: 'iframe:0'' is not a supported element to set text to. at ArtOfTest.WebAii.Core.Actions.SetText(Element targetElement, String text) at ArtOfTest.WebAii.Design.IntrinsicTranslators.Descriptors.SetTextActionDescriptor.Execute(Browser browser) at ArtOfTest.WebAii.Design.Extensibility.HtmlActionDescriptor.Execute(IAutomationHost autoHost) at ArtOfTest.WebAii.Design.Execution.ExecutionEngine.ExecuteStep(Int32 order)

What could be the reason?

Plamen
Telerik team
 answered on 16 May 2012
5 answers
157 views
Hi,

How can we send from local database (for testing data) a value to our bind t-sql param?

sample:

If this is my local db: (column name is TempMachineName)
Machine1
Machine2

select Id from [ActiveMachines] where Name = '$(TempMachineName)'

and then to use the scalar value for some locator on DOM element

Thanks,
Yohai 



Cody
Telerik team
 answered on 14 May 2012
3 answers
195 views
I was wondering if anyone knows a way to hook into an already running application to do records?

The issue that we are having is that our WPF application is launched via click-once, that requires a URI to launch the app.  I am able to navigate to the webpage that hosts the launcher, and launch the app, but I do not know a way to hook into the running version without having test studio try and launch a new version of the app (if that makes sense)

Any input would be helpful.

Thanks.
Anthony
Telerik team
 answered on 14 May 2012
1 answer
89 views
Hi all,

I'm new to telerik test studio. Kindly help me in providing the documentation or any tutorial so i can understand it & start to work on it as we have decided use this tool for automation.

Thanks & Regards,
Deepa.C
Anthony
Telerik team
 answered on 14 May 2012
3 answers
177 views
I'm using TestStudio Standalone Version, and I've created my own extension of BaseWebAiiTest to handle some extra logging behind-the-scenes by overriding the OnBeforeTestStarted and OnAfterTestCompleted events.  Since I want all of my tests to include that extra logging info, I was wondering if there was any way to configure ArtOfTest.Runner to use my CustomBaseWebAiiTest instead of BaseWebAiiTest.

I've modified "Project Settings→Recording Options→Code Base Class" to be my CustomBaseWebAiiTest class (both with/without its full assembly name) instead of BaseWebAiiTest, but all that appears to do is allow the Recorder to recognize any such classes as being associated with Tests.

On a side-note, when I go to add a Coded Step to a Test that does not yet have a code-behind class, it still creates that code-behind class as an extension of BaseWebAiiTest by default.  If I've modified the "Code Base Class" at all, then that extension needs to be manually changed to "CustomBaseWebAiiTest" outside of TestStudio to match the "Code Base Class"; otherwise it's unusable.  As such, I'd like to report that as a bug, since any code-behind files that TestStudio generates should match its current "Code Base Class".

Moving back on topic, the only way that I appear to be able to make tests use my CustomBaseWebAiiTest class it to explicitly create a code-behind class for each one of them which is an extension of said class.  My issue with that approach is that it means I'll be creating an essentially empty code-behind class for every single test that I have, which seems entirely unecessary and will add a lot of extra clutter to my Test Project.

All this having been said, is there any way that I can configure ArtOfTest.Runner to use whatever my "Code Base Class" is instead of always using BaseWebAiiTest by default?  If this is not currently possible, then I'd like to request it as an feature for TestStudio Standalone Version.

-Max
Anthony
Telerik team
 answered on 11 May 2012
1 answer
103 views
Case
Step:
- Add 1 sheet
- Back to sheet list screen
Expected result:
- Sheet name is displayed on list
(Ref below image)
*****Customize code
Public Sub test_CodedStep()
       Dim control_sheet_name as HtmlControl= Find.ByContent(of htmlControl)(Data("Col1").ToString())
                  if control_sheet_name isNot nothing then
                            'control_sheet_name.click(false)  
                            log.WriteLine(Data("Col1").ToString()&""&"is existence")
                            MessageBox.Show("Sheet name"&Data("Col1").ToString()& "is found","Information message")
                            
                    else
                            MessageBox.Show("Sheet name" &Data("Col1").ToString()&"is not found","Error message")               
                    end if  
            
        End Sub

        <CodedStep("Verify 'TextContent' 'Contains' 'A5' on 'A5PTag'")> _
        Public Sub test_CodedStep1()
            'Verify 'TextContent' 'Contains' 'A5' on 'A5PTag'
            'Pages.InachisGtMediaAnd1.A5PTag.AssertContent().TextContent(ArtOfTest.Common.StringCompareType.Contains, "A5")
                        Dim control_sheet_type as HtmlControl= Find.ByContent(of htmlControl)(Data("Col3").ToString())
                                
                                if control_sheet_type isNot nothing then
                                        'control_sheet_name.click(false)  
                                        log.WriteLine(Data("Col3").ToString()&" is existence")
                                        MessageBox.Show("Sheet type is found","Information message")
                                        
                                else
                                        MessageBox.Show("Sheet type is not found","Error message")
                                    
                                end if  
        End Sub
********************

Byron
Telerik team
 answered on 11 May 2012
1 answer
158 views

I was reading the documentation on data driven testing and I had a few questions in regards to data driven tests on multiple levels.

The User Guide gave an example of a data-bound test executing a test as step where the test inherited the parent's data. Is this possible to do when the parent test is using local data, too or does this only work with data bound from elsewhere?

In the case of a data-bound test calling another data-bound test, is it possible for the child test to still use values from the parent test?

Not quite related to data-bound testing, can a child test use values extracted in a parent test using the extract feature?

It doesn't matter if it has to be coded or not, I just want to know if it's possible.


Thanks in advance
Anthony
Telerik team
 answered on 10 May 2012
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?