Skip to content

Instantly share code, notes, and snippets.

View pedz's full-sized avatar

Perry Smith pedz

View GitHub Profile
@alishutc
alishutc / login_helper.rb
Created March 15, 2012 12:59
Login in using HTTP basic authentication with Capybara selenium driver
def login(username, password)
page.visit("http://#{username}:#{password}@#{page.driver.rack_server.host}:#{page.driver.rack_server.port}/")
end