Tuesday, November 18, 2008

Watir like tool for functional testing of Adobe Flex applications

Now you can test your Adobe Flex Application with freely available tool FunFX. Yes it is exactly the same as Watir which is used to automate the html based web application in your browser. FunFX is also ruby based open-source library. No need to buy costly software for automating your Flex web application. Create your own automation framework with the help of free FunFX. You can install the FunFX library via gem install utility or you can download the gem.For more information go to site http://funfx.rubyforge.org/install.html
Many thanks to Peter Motzfeldt for such nice stuff which makes life easier.

Friday, October 10, 2008

Web browser automation using ruby based tool "WATIR"

Watir stands for “Web Application Testing in Ruby”. It is pronounced water. Watir is a simple ruby based open-source library for automating web browsers. It drives browsers the same way people do. It clicks links, fills in forms and presses buttons. Watir also checks results, such as whether expected text appears on the page. Watir works with Internet Explorer on Windows and is currently being ported to support Firefox and Safari.

Watir is completely ruby based. Like other programming languages, Ruby gives you the power to connect to databases, read input data files, export XML and structure your code into reusable libraries. Unlike other programing languages, Ruby is concise and often a joy to read.

Many thanks to community behind Watir and Ruby.