WATIR, pronounced “Water”, is an acronym standing for “Web Application Testing in Ruby”. Watir is a toolkit used to automate browser-based tests during web application development. This automated test tool uses the Ruby scripting language to drive the Internet Explorer web browser, and is available as a Ruby Gem.
Examples
The google example
# Here we see a [...]
Archive for the ‘Ruby’ Category
WATIR
Posted in Ruby on June 29, 2009 | Leave a Comment »
Create Web Service in Ruby
Posted in Ruby, WEB, tagged client, RPC, ruby web service, server, SOAP, Standalone server, web service on December 12, 2008 | Leave a Comment »
Web Service: Web services work on top of HTTP: they generally involve sending an HTTP request to a certain URL (possibly including an XML document), and getting a response in the form of another XML document. Web service implementations can be broken down into two categories: servers and clients.
Most web services are based on one [...]
Ruby String Functions
Posted in Ruby on May 28, 2008 | 2 Comments »
“i got what i want”.count “i” #=> 2
“i got what i want”.delete “i” #=> ” got what want”
“hello”.gsub(/[aeiou]/, ‘*’) #=> “h*ll*”
“hello”.sub(/[aeiou]/, ‘*’) [...]
Learn Ruby Language faster
Posted in Ruby on August 22, 2007 | 1 Comment »
Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward
The language was created by Yukihiro “Matz” Matsumoto, who started working on Ruby on February 24, 1993, and released it to the public [...]