Created
October 7, 2014 10:13
-
-
Save anonymous/fcf3613032b5b6d22628 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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