Tagged Questions

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

learn more… | top users | synonyms

3
votes
2answers
4k views

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 ...
3
votes
4answers
1k views

“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 ...
0
votes
1answer
54 views

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: ...
0
votes
1answer
36 views

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 ...
0
votes
1answer
86 views

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 ...
0
votes
2answers
123 views

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 ...
0
votes
1answer
113 views

WebAii Test web page that produces non-html content (CSV, JSON, XML…)

I use WebAii to test an ASP.Net application. This application has an "Export to CSV" feature, and I would like to test that it works correctly with WebAii. Is there a way to access the exact source ...
0
votes
1answer
166 views

Testing paging with Telerik's WebAii framework

I need to find every HtmlAnchor inside a Span with a specific id: <span id="ctl05_dpIncidentFailures"> <span>1</span> // page 1 <a ...
0
votes
1answer
145 views

WebAii/ArtOfTest - Testing contents of <p> tags?

I'm writing some automation tests using the free version of WebAii/ArtOfTest. I'm trying to grab a <p> tag so I can verify the contents. I see classes for most tag types (eg. HtmlDiv, HtmlSpan, ...
0
votes
0answers
56 views

Gallio debug log information

We have a bunch of items that currently just write to the standard log in Gallio. What I am wondering is if there was a way to write these items to a debug log type of thing. Something that would ...
0
votes
1answer
121 views

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 ...
0
votes
0answers
62 views

Using webaii to read data from silverlight application

I have a silverlight in browser application in which I need to read some data from. Is it possible to read specific data out of a silverlight application using webaii? if so, a code snippet would be ...
0
votes
1answer
149 views

NUnit 2.5.9 and WebAii

I'm attempting to write my own NUnit tests for a Silverlight application using WebAii. I've been attempting to follow a rather detailed blog over at ...
0
votes
1answer
138 views

WebAii ArtOfTest need help finding a dynamically added element (label)

Good Morning All, I'm doing some web automation testing using WebAii ArtOfTest. It's similar to Watin. Anyways, I'm trying to find a label element by its for attribute. Using the jQuery validation ...
0
votes
1answer
231 views

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 ...
0
votes
3answers
224 views

Are web automation tools right for developing custom load/stress testing tools?

Tools such as WebAii can be used to visit a website, and with a simple loop, in succession. If I code a lot of hits to a site in succession and/or with the ability for custom patterns, is this the ...
0
votes
2answers
563 views

How to make WebAii test wait for jQuery animation to complete?

How can I write a Visual Studio WebAii Test that waits for a jQuery animate operation to complete before continuing? Currently I'm just pausing for 5 seconds using a loop, but this is prone to ...
0
votes
1answer
485 views

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 ...