Skip to content

Instantly share code, notes, and snippets.

@maesitos
maesitos / gist:c0239c06cd3bf5cbf6bf7c9cf686e668
Created December 31, 2016 10:56 — forked from 13k/gist:3086739
Capybara in Rails Console
# rails console test
# # or
# RAILS_ENV=test rails console
require 'capybara/dsl'
Capybara.app = app.instance_variable_get("@app")
cap = Object.new.instance_eval { extend Capybara::DSL; self }
# cap.visit '/'
# cap.page.find 'h1'