Telerik Forums
Test Studio Forum
1 answer
121 views
Only one recorder windows is supported per-process.
No recorder will be attached to new document.
All I did was click on a button.
What?
Stoich
Telerik team
 answered on 14 Mar 2011
1 answer
129 views
Hi, 
I am testing my app which has a calendar control in which the user is required to select a date from the calendar control. When the scripts were originally recorded the date selected was in February and now that is is March the tests are failing. They are failing because when the script comes to the step of selecting a date it does not know to enable the calendar control and select the arrow to go back a month. 

Is there a way to record the step without it having to go back and record a past date? 

Thank You,
Hillary Leitch
Benjamin
Top achievements
Rank 1
 answered on 14 Mar 2011
2 answers
153 views
I try to execute a test with one step customize in VB code but it's failed with below error message 
C:\Program Files\Telerik\WebUI Test Studio 2010.3\My Projects\TestProject1\New Test.aii.vb: Line 71: (BC30002) Type 'System.Windows.Forms.Keys' is not defined.
Then, I try to add the reference to my project, but I cannot add references from any folder except telerik's bin.
Would you help me ?
My tool is WebUI test studio QA Edition 2010.3
Thanks

Kate
Kate
Top achievements
Rank 1
 answered on 14 Mar 2011
5 answers
112 views
Hi,

When i am creating the script for different modules like log in the application,client and rest of the modules.if i created the script for login application and save it.then after this i move to the next module, is it necessary to start recording the application from initial point i:e from login state or their is the way so that we can call the log in script from various modules by which we can save time as well as script steps will be less also.

Regards
Hillary
Cody
Telerik team
 answered on 11 Mar 2011
3 answers
162 views
Where can I download different versions of Web UI (FULL)?
I tried 1421 and now I'm using 1213 and neither one works well for me.
I want to try the Q3 release 1307 I think???
Cody
Telerik team
 answered on 11 Mar 2011
1 answer
130 views
My website consists of dynamic pages which have URLs like /flights/rze/agp/110322/110329/airfares-from-rzeszow-to-malaga-in-march-2011.html
When using recorder it creates elements on such page. When I click page I can see its properties. What is the page identification for?
It doesn't seem to matter what I select there. When running data-driven tests I land on other pages like: /flights/krk/edi/110322/110329/airfares-from-rzeszow-to-malaga-in-march-2011.html and still test goes through fine. However I think identification of page should work somehow.

How does it work actually?
Stoich
Telerik team
 answered on 11 Mar 2011
1 answer
69 views
We have Team Foundation Server as a version control system in place. Telerik QA edition seems to be successfully integrating and checking in/out changesets to the repository. However, we have an external continuous integration system (Hudson) that orchestrates our current builds and unit/interface testing. When sourcing from TFS using our CI service, certain files seem to be missing, namely:
  • The project DLL that is compiled from our C# code at runtime
  • Any test lists that engineers create

Has anybody been able to successfully integrate with TFS, the QA Edition, and a third party orchestration engine?

If we used another version control system (or a client external from Telerik) we could check all those files in, but then we lose the integration that the QA edition offers. Some basic investigation into how the DLL is created yielded a dark path that I don't really want to walk down - namely that the test runner edition can't be used to compile the DLL. Moving to the developer edition with full MS-Test seems a bit heavy given that we enjoy the usability of the QA edition. A trial run using another version control system was successful in executing the tests and reporting results, so we've at least got something working.
Konstantin Petkov
Telerik team
 answered on 11 Mar 2011
3 answers
105 views
Test runs fine but not in a test list
Also, I have test steps in a few tests that fail on execution but pass when I edit them
It says validation passed! but still fails
I tried changing the wait time and convert to wait
Stoich
Telerik team
 answered on 11 Mar 2011
9 answers
236 views
One of my applications under test is currently being converted to .NET 4 from .NET 1.1 (yes, I know, it's about time).  The most meaningful consequence of this from my standpoint is that the names of the HTML elements referenced by my tests are all going to change because, unlike now, they'll all be inherited from master pages. For instance, a control named "FaceAmountDDLSelect" will become "ContentPlaceHolder1PageHoldAccordionOptionalFilterViewUCOptionFilterControlsUCFaceAmountDDLSelect".  Or something like that.

In order to maintain the usability of my tests post-conversion, I'm definitely in search of advice.  It seems to me that it might be as simple as changing the find logic to "contains" for each control since the legacy control names won't be deleted entirely, but only appended.  Regardless, I'd be interested to hear from anyone who has dealt with a similar situation.  Thank you!
Cody
Telerik team
 answered on 10 Mar 2011
7 answers
159 views
Hello. I've recorder test from WebUI test studio. It records me like that:

using Telerik.WebAii.Controls.Html;
//using Telerik.WebAii.Controls.Xaml;
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
 
using ArtOfTest.Common.UnitTesting;
using ArtOfTest.WebAii.Core;
using ArtOfTest.WebAii.Controls.HtmlControls;
using ArtOfTest.WebAii.Controls.HtmlControls.HtmlAsserts;
using ArtOfTest.WebAii.Design;
using ArtOfTest.WebAii.Design.Execution;
using ArtOfTest.WebAii.ObjectModel;
using ArtOfTest.WebAii.Silverlight;
using ArtOfTest.WebAii.Silverlight.UI;
 
namespace SFTQuickStarts_NUnit_CS
{
 
 
    public class Login : BaseWebAiiTest
    {
        #region [ Dynamic Pages Reference ]
 
        private string loginPage; // path to site
        private string emulatorPath; // path to emulator
        private string credentials; // path to file with credentials
        private string sitePage; // path to file with site page
        private string login;
        private string pass;
        private Pages _pages;
 
        /// <summary>
        /// Gets the Pages object that has references
        /// to all the elements, frames or regions
        /// in this project.
        /// </summary>
        public Pages Pages
        {
            get
            {
                if (_pages == null)
                {
                    _pages = new Pages(Manager.Current);
                }
                return _pages;
            }
        }
    
        #endregion

It is working from WebUI studio. Then I moved this code to Visual Studio 2010. The automation library was connected. But

private Pages _pages;
 
public Pages Pages
        {
            get
            {
                if (_pages == null)
                {
                    _pages = new Pages(Manager.Current);
                }
                return _pages;
            }
        }

are marked as incorrect. After trying to build project I receive the next:

Error   1   The type or namespace name 'Pages' could not be found (are you missing a using directive or an assembly reference?) C:\Program Files\Telerik\WebUI Test Studio 2010.3\Samples\WebAii Framework\QuickStarts_NUnit_CS\Login.cs    32  17  QuickStarts_NUnit_CS
 
Error   2   The type or namespace name 'Pages' could not be found (are you missing a using directive or an assembly reference?) C:\Program Files\Telerik\WebUI Test Studio 2010.3\Samples\WebAii Framework\QuickStarts_NUnit_CS\Login.cs    39  16  QuickStarts_NUnit_CS

Please help me.
James Faw
Top achievements
Rank 1
 answered on 10 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?