aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/system_testing/rails_selenium_driver_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Appease Rubocopeileencodes2017-02-201-2/+2
| | | | Rubocop / code climate don't like single quotes and prefer doubles.
* Reconfigure how the drivers workeileencodes2017-02-201-0/+58
This removes the useless Rack Test Driver that Rails was providing and moves to a shim like approach for default adapters. If someone wants to use one of the default Capybara Drivers then we will initialize a new `CapybaraDriver` that simply sets the default driver. Rails though is much more opinionated than Capybara and to make system testing a "works out of the box" framework in Rails we have the `RailsSeleniumDriver`. This driver sets defaults that Rails deems important for selenium testing. The purpose of this is to simply add a test and it just works.