diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-06-14 10:50:48 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-06-14 10:50:48 +0000 |
commit | 9b549fdfe92ceb929e4b06e31156543d84870c7f (patch) | |
tree | 2182589703fbd3f9eb67c7777f13b4a01ed0d6be /test/ui | |
parent | 17378152bf63540baba75ad4286c8604e360c34f (diff) | |
download | redmine-9b549fdfe92ceb929e4b06e31156543d84870c7f.tar.gz redmine-9b549fdfe92ceb929e4b06e31156543d84870c7f.zip |
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
Diffstat (limited to 'test/ui')
-rw-r--r-- | test/ui/base.rb | 9 |
1 files 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 |