Skip to content

Instantly share code, notes, and snippets.

@andreastt
Created June 29, 2011 14:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreastt/1053934 to your computer and use it in GitHub Desktop.
Save andreastt/1053934 to your computer and use it in GitHub Desktop.
require 'watir-webdriver'
describe 'A Website' do
before(:all) { @browser = Watir::Browser.new :firefox }
it 'contains "Mozilla"' do
@browser.goto 'http://mozilla.org/'
@browser.text.should include 'Mozilla'
end
after(:all) { @browser.quit }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment