Skip to content

Instantly share code, notes, and snippets.

@bbbco
Last active December 19, 2015 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbbco/6001743 to your computer and use it in GitHub Desktop.
Save bbbco/6001743 to your computer and use it in GitHub Desktop.
Selenium WebDriver for Ruby Bindings quick script template; based on @jarib's SWD template
require 'rubygems'
require 'selenium-webdriver'
browser = Selenium::WebDriver.for :firefox # replace :firefox with the browser you're having trouble with
begin
browser.get # <= Add your url here
# your code here
ensure
browser.quit
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment