This file contains 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 'capybara/rspec' | |
require 'creek' | |
require 'selenium/webdriver' | |
Capybara.default_driver = :selenium # defaults to firefox, but you can have :selenium_chrome and :selenium_chrome_headless | |
# as well as other options | |
describe 'automating a form', type: :feature do | |
it 'submits a form - happier path' do | |
visit 'https://formy-project.herokuapp.com/form' |