CSC/ECE 517 Fall 2014/ch1a 19 mx: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 50: Line 50:


Setting a multi-line text box
Setting a multi-line text box
<pre>
browser.text_field(:name => 'entry.1.single').set "I come here from Australia. \n The weather is great here."
browser.text_field(:name => 'entry.1.single').set "I come here from Australia. \n The weather is great here."
</pre>


Setting and clearing a radio button
Setting and clearing a radio button
<pre>
browser.radio(:value => 'Watir').set
browser.radio(:value => 'Watir').set
browser.radio(:value => 'Watir').clear
browser.radio(:value => 'Watir').clear
</pre>


Setting and clearing check boxes
Setting and clearing check boxes
<pre>
browser.checkbox(:value => 'Ruby').set
browser.checkbox(:value => 'Ruby').set
browser.checkbox(:value => 'Python').set
browser.checkbox(:value => 'Python').set
browser.checkbox(:value => 'Python').clear
browser.checkbox(:value => 'Python').clear
</pre>


Clicking a button
Clicking a button
<pre>
browser.button(:name => 'logon').click
browser.button(:name => 'logon').click
</pre>


Clearing, getting and selecting selection list values
Clearing, getting and selecting selection list values
<pre>
browser.select_list(:name => 'entry.6.single').clear
browser.select_list(:name => 'entry.6.single').clear
puts browser.select_list(:name => 'entry.6.single').options
puts browser.select_list(:name => 'entry.6.single').options
browser.select_list(:name => 'entry.6.single').select 'Chrome'
browser.select_list(:name => 'entry.6.single').select 'Chrome'
</pre>


Clicking a button
Clicking a button
<pre>
browser.button(:name => 'submit').click
browser.button(:name => 'submit').click
</pre>


Checking for text in a page
Checking for text in a page
<pre>
puts browser.text.include? 'Your response has been recorded.'
puts browser.text.include? 'Your response has been recorded.'
</pre>


Checking the title of a page
Checking the title of a page
<pre>
puts browser.title == 'Thanks!'
puts browser.title == 'Thanks!'
</pre>


=== Run in other framworks ===
=== Run in other framworks ===

Revision as of 04:51, 17 September 2014

Watir


Introduction

Watir(Web Application Test in Ruby), pronounced water, is an automated test tool which uses the Ruby scripting language to drive the Internet Explorer web browser. It allows you to write tests that are easy to read and maintain. It is simple and flexible. Watir was primarily developed by Bret Pettichord and Paul Rogers. It drives Internet Explorer, Firefox, Chrome, Opera and Safari, and is available as a RubyGems gem. Watir is a toolkit for automated tests to be developed and run against a web browser.

Watir project consists of several smaller projects. The most important ones are watir-classic, watir-webdriver and watirspec.

Watir-classic

Watir-webdriver

Watirspec

Watirspec is executable specification of the Watir API, like RubySpec is for Ruby.

Overview

Web Application Testing

Why Ruby

Installation

Make It Run

All examples are designed to work on the live Watir demo form: http://bit.ly/watir-example.

Run in .rb

You can require Ruby Watir gem first via the -rubygems command line option or by using the RUBYOPT environment variable. You can also require it manually in your script: require 'rubygems'

Including Watir gem to drive Internet Explorer on Windows require 'watir'

Including Watir-WebDriver gem to drive Firefox/Chrome on Windows/Mac/Linux require 'watir-webdriver'

Starting a new browser & and going to our site browser = Watir::Browser.new browser.goto 'http://bit.ly/watir-example'

Setting a text field

browser.text_field(:name => 'entry.0.single').set 'Watir'

Setting a multi-line text box

browser.text_field(:name => 'entry.1.single').set "I come here from Australia. \n The weather is great here."

Setting and clearing a radio button

browser.radio(:value => 'Watir').set
browser.radio(:value => 'Watir').clear

Setting and clearing check boxes

browser.checkbox(:value => 'Ruby').set
browser.checkbox(:value => 'Python').set
browser.checkbox(:value => 'Python').clear

Clicking a button

browser.button(:name => 'logon').click

Clearing, getting and selecting selection list values

browser.select_list(:name => 'entry.6.single').clear
puts browser.select_list(:name => 'entry.6.single').options
browser.select_list(:name => 'entry.6.single').select 'Chrome'

Clicking a button

browser.button(:name => 'submit').click

Checking for text in a page

puts browser.text.include? 'Your response has been recorded.'

Checking the title of a page

puts browser.title == 'Thanks!'

Run in other framworks

Comparison with Other Tools

Reference