Skip to content

Instantly share code, notes, and snippets.

Created October 7, 2014 10:13
Show Gist options
  • Select an option

  • Save anonymous/fcf3613032b5b6d22628 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/fcf3613032b5b6d22628 to your computer and use it in GitHub Desktop.
# filename: test.rb
require 'selenium-webdriver'
require 'rspec'
#require 'rspec-expectations'
def setup
@driver = Selenium::WebDriver.for :firefox
end
def teardown
@driver.quit
end
def run
setup
yield
teardown
end
run do
@driver.get 'http://the-internet.herokuapp.com'
@driver.title.should == 'The Internet'
@driver.save_screenshot 'example1.png'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment