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

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 that was generated for a page? I tried using…
ckarras
  • 4,946
  • 2
  • 33
  • 37
0
votes
1 answer

Testing paging with Telerik's WebAii framework

I need to find every HtmlAnchor inside a Span with a specific id: 1 // page 1 2
Jean-François Beaulieu
  • 4,305
  • 22
  • 74
  • 107
0
votes
2 answers

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 http://borntocode.co.uk/page/Setting-Up-a-WebAii-Test-Project-with-NUnit.aspx however I simply can't…
aslate
  • 63
  • 3
0
votes
1 answer

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 plug in, a label element is added dynamically to…
Hcabnettek
  • 12,678
  • 38
  • 124
  • 190
0
votes
0 answers

How to access Content of a ComboBox.ItemElements?

I'm stuck in accessing the Content of comboBox.ItemElements which is as enter code herehighlighted below. I'm unable to figure out what is the probable reason. If I copy the expression in debug view this is how it is: …
SKN
  • 520
  • 1
  • 5
  • 20
0
votes
1 answer

SilverLight Webaii Test Automation - Enter User credentials into IE Dialogue box

I am trying to test a SilverLight web application using the Telerik Webaii test automation suite. When my code opens the browsers and tries to direct to the applications http address a login credentials dialogue popup appears. The dialogue box is…
ED209
  • 588
  • 1
  • 9
  • 26
0
votes
1 answer

webaii: clicking an element

I am using webaii to write some test automation, and can't figure out how to Click() an < i> element. They seem to define the Click() method for Control elements, and < i> is not defined as a Control element. Any suggestions?
Ziffusion
  • 8,779
  • 4
  • 29
  • 57
0
votes
3 answers

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 same functionality as a load/stress testing…
GurdeepS
  • 65,107
  • 109
  • 251
  • 387
0
votes
2 answers

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 breaking easily if the animation time changes. I've…
John K
  • 28,441
  • 31
  • 139
  • 229
0
votes
1 answer

How to use WebAii and WatiN with Same Browser

I wrote too much tests in watin and all they work. there is a silverlight upload control in a page and I must use webaii to control that. but I don't want to convert all my watin code to webaii. How can I use watin and webaii with one browser tab?
0
votes
2 answers

Dynamically change connection string for UI tests

I'm using WebAii library for UI testing - I want to test whether my component displays the same records as there are in database therefore I need to switch my application's connection string to point to the test database just for the time of running…
1
2