-
-
Save movstox/67a11967ba0c02924fb5ab16d172f7de to your computer and use it in GitHub Desktop.
Standalone Capybara Test
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
require 'rubygems' | |
require 'capybara' | |
require 'capybara/dsl' | |
Capybara.run_server = false | |
Capybara.current_driver = :selenium | |
Capybara.app_host = 'http://www.google.com' | |
module MyCapybaraTest | |
class Test | |
include Capybara | |
def test_google | |
visit('/') | |
end | |
end | |
end | |
t = MyCapybaraTest::Test.new | |
t.test_google |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment