From 9b549fdfe92ceb929e4b06e31156543d84870c7f Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Fri, 14 Jun 2013 10:50:48 +0000 Subject: [PATCH] shorten comment lines at test/ui/base.rb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11975 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/ui/base.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/ui/base.rb b/test/ui/base.rb index 505c13ed9..a0d9769d1 100644 --- a/test/ui/base.rb +++ b/test/ui/base.rb @@ -20,13 +20,16 @@ require 'capybara/rails' Capybara.default_driver = :selenium Capybara.register_driver :selenium do |app| - # Use the following driver definition to test locally using Chrome (also requires chromedriver to be in PATH) + # Use the following driver definition to test locally using Chrome + # (also requires chromedriver to be in PATH) # Capybara::Selenium::Driver.new(app, :browser => :chrome) # Add :switches => %w[--lang=en] to force default browser locale to English # Default for Selenium remote driver is to connect to local host on port 4444 # This can be change using :url => 'http://localhost:9195' if necessary - # PhantomJS 1.8 now directly supports Webdriver Wire API, simply run it with `phantomjs --webdriver 4444` - # Add :desired_capabilities => Selenium::WebDriver::Remote::Capabilities.internet_explorer) to run on Selenium Grid Hub with IE + # PhantomJS 1.8 now directly supports Webdriver Wire API, + # simply run it with `phantomjs --webdriver 4444` + # Add :desired_capabilities => Selenium::WebDriver::Remote::Capabilities.internet_explorer) + # to run on Selenium Grid Hub with IE Capybara::Selenium::Driver.new(app, :browser => :remote) end