Questions tagged [webaii]

WebAii is the former name of the free UI testing framework being developed by Telerik. Now it is called 'Telerik Testing Framework'.

The framework allows UI test automation of Web/WPF/Silverlight-based applications providing .NET API. Integrates with NUnit/MbUnit/XUnit/MSTest.

26 questions
3
votes
4 answers

"Art of Test" for C# Automated Web Testing in CruiseControl.NET

We currently use SWEA (http://webiussoft.com) to run automated tests of the site during our CruiseControl.NET overnight builds. We are looking for a more robust solution and we are looking at the "Art of Test" (http://www.artoftest.com)…
Bigwave
  • 2,166
  • 1
  • 17
  • 28
3
votes
2 answers

How to Programatically "Click" a Silverlight HyperlinkButton (WebAii)

I'm currently using the WebAii automation framework to write some user interface tests against a Silverlight 3 application. I'm new to Silverlight and suspect that I'm missing some bit of information about the HyperlinkButton. The application has a…
ahockley
  • 3,696
  • 24
  • 26
1
vote
1 answer

WebAii/ArtOfTest - Testing contents of

tags?

I'm writing some automation tests using the free version of WebAii/ArtOfTest. I'm trying to grab a

tag so I can verify the contents. I see classes for most tag types (eg. HtmlDiv, HtmlSpan, etc), but don't see one for

tags. Is there a class…

Craig M
  • 5,598
  • 4
  • 32
  • 43
1
vote
1 answer

WebAii - problem facing while entering text in input box in web page

Steps performed 1. Open a web page where data needs to be entered programmatically 2. Retrieved Element instance by passing element Id. 3. Call SetText function in Actions instance in ArtOfTest.WebAii.TestTemplates.BaseTest class by passing element…
Arasi
  • 11
  • 1
1
vote
1 answer

WebAii HtmlControl.Click() is clicking wrong control

I've used the free edition of the WebAii test framework [the one released by Art Of Test before they were acquired by Telerik] quite a bit, so I know it basically works. So the problem I'm having now is completely baffling to me. I'm trying to test…
Dave Hanna
  • 2,491
  • 3
  • 32
  • 52
1
vote
1 answer

Webaii Automation - Clicking 'OK' on a dialogue box

I am currently writing a number of automated tests (using C# and the Webaii framework) to test a SilverLight website. When I try to delete an element on the website a dialogue popup appears on screen asking if I am sure that i want to delete the…
ED209
  • 588
  • 1
  • 9
  • 26
1
vote
0 answers

Webaii - Unable to locate an element in a Silver Light Web page

Hi I am trying to locate an element on a silver light web page but I am struggling to find the element. Below is the XAML. The element looks like it would be a 'TextBlock' element, but I wrote some C# code that put all the TextBlock elements on the…
ED209
  • 588
  • 1
  • 9
  • 26
1
vote
1 answer

Webaii Opening/running Internet Explorer as different user

Is it possible to open/running IE as different users using Webaii? I know manually you can hold down shift and right click windows explorer in 'All Programs' from the Windows Start menu and select 'Run as different user'. But is it possible to open…
ED209
  • 588
  • 1
  • 9
  • 26
1
vote
2 answers

Selecting element in a collection of buttons by text

I am trying to loop through a collection of button objects in a SilverLight web page (there are 175 button objects) to find a button that has the text value = 'Airport". But I do not know how to get to the text property using WebAii (C#). Please…
ED209
  • 588
  • 1
  • 9
  • 26
1
vote
1 answer

C# Autromated test - Webaii Silver Light Website radWindow Not in focus

Wonder if anyone can help. Im trying to automate a number of navigation tests for a silver light website. One of my tests clicks on a button which in turn opens a radWindow popup with a number of other controls on it. the problem is I can not get…
ED209
  • 588
  • 1
  • 9
  • 26
0
votes
2 answers

Webaii ConfirmDialog missing?

How do you Webaii guys out there handle javascript confirm popup's? I can't find a ConfirmDialog class in ArtOfTest.WebAii.Win32.Dialogs, and if I try to use AlertDialog instead I get an ArgumentException due to validation rules in the ctor for the…
Fredrik Rofors
0
votes
1 answer

Working with custom edit popup forms in Telerik Testing Framework

(also posted on Telerik forums) Hi all, We are trying to use the automation testing framework in code to enter data into a custom edit popup form (like in this demo:…
Jeffrey Cameron
  • 9,975
  • 10
  • 45
  • 77
0
votes
1 answer

Detect ToolTip on row of RadGrid using WebAii

We use a tooltip on our RadGrid to present a feedback message to a user when a row is disabled. During a test, is there any way to detect what the text of the tooltip is when hovering over a particular row by using the WebAii suite? Thanks
Jeffrey Cameron
  • 9,975
  • 10
  • 45
  • 77
0
votes
1 answer

Telerik WebAii Framework - How to change focus to newy opened page/window

Testing using WebAii Framewok - I am currently stuck at a point where I'm not able to determine which window my code is focused on. The code opens a page lest say A, clicks on a link which then opens a new child window, call it B. How do I access…
0
votes
2 answers

Does the WebAii framework support a page class structure in the way that WatiN does?

I am evaluating a couple of different frameworks for test automation. One of the things I really like about WatiN is the page model for abstracting page code from your tests. Watin Example for a login Page: public class AVLoginPage : Page { …
Dan Snell
  • 2,185
  • 3
  • 21
  • 35
1
2