Closed drewbailey closed 9 years ago
Corresponding sauce_helper.rb file
require 'sauce'
require 'sauce/cucumber'
require 'sauce/capybara'
Sauce.config do |config|
config[:application_host] = "https://#{ENV['STACK_URL']}"
config[:start_tunnel] = ENV['START_TUNNEL']
config[:start_local_application] = false
config[:browsers] = [
['Windows 8', 'Chrome', nil],
['Windows 7', 'Firefox', '20'],
['OS X 10.10', 'chrome', '39.0'],
['Windows 7', 'Internet Explorer', '9'],
['iPhone Simulator', 'iphone'],
['Windows 8.1', 'Internet Explorer', '11'],
['Windows 8.1', 'Internet Explorer', '11']
]
config[:sauce_connect_4_executable] = ENV['SAUCE_CONNECT_LOC']
end
After a little more digging it only happens when ENV['JENKINS_SERVER_COOKIE']
is defined. It is worth noting this works locally, and our jenkins has the on demand plugin installed but we are not using it for any of our job configuration.
Hi we are running into an issue trying to run
and are running into the follow error. I couldn't find where exactly browser should be coming from.
Any help would be greatly appreciated.