Skip to content

Commit

Permalink
Firefox 36 breaks WebDriver 2.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Hoer committed Feb 27, 2015
1 parent dcc746f commit c2de23b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.2.2 - 2/26/2015

- Firefox 36 breaks WebDriver 2.44.0

## 2.2.1 - 2/18/2015

- Update ChromeDriver from 2.12 to 2.14
Expand Down
2 changes: 1 addition & 1 deletion attributes/default.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
default['selenium']['server_version'] = '2.44.0'
default['selenium']['server_version'] = '2.45.0'
default['selenium']['iedriver_version'] = '2.44.0'
default['selenium']['chromedriver_version'] = '2.14'

Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'MIT'
description 'Installs/Configures Selenium'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '2.2.1'
version '2.2.2'

supports 'centos'
supports 'redhat'
Expand Down
8 changes: 4 additions & 4 deletions spec/unit/server_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
let(:chef_run) { ChefSpec::SoloRunner.new(platform: 'windows', version: '2008R2').converge(described_recipe) }

it 'downloads jar' do
expect(chef_run).to create_remote_file('C:/selenium/server/selenium-server-standalone-2.44.0.jar')
expect(chef_run).to create_remote_file('C:/selenium/server/selenium-server-standalone-2.45.0.jar')
end

it 'creates link to jar' do
expect(chef_run).to create_link('C:/selenium/server/selenium-server-standalone.jar').with(
to: 'C:/selenium/server/selenium-server-standalone-2.44.0.jar'
to: 'C:/selenium/server/selenium-server-standalone-2.45.0.jar'
)
end
end
Expand All @@ -19,12 +19,12 @@
let(:chef_run) { ChefSpec::SoloRunner.new(platform: 'centos', version: '7.0').converge(described_recipe) }

it 'downloads jar' do
expect(chef_run).to create_remote_file('/usr/local/selenium/server/selenium-server-standalone-2.44.0.jar')
expect(chef_run).to create_remote_file('/usr/local/selenium/server/selenium-server-standalone-2.45.0.jar')
end

it 'creates link to jar' do
expect(chef_run).to create_link('/usr/local/selenium/server/selenium-server-standalone.jar').with(
to: '/usr/local/selenium/server/selenium-server-standalone-2.44.0.jar'
to: '/usr/local/selenium/server/selenium-server-standalone-2.45.0.jar'
)
end
end
Expand Down
2 changes: 1 addition & 1 deletion test/integration/selenium_test/serverspec/server_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'serverspec_helper'

describe 'selenium::server' do
describe file('/usr/local/selenium/server/selenium-server-standalone-2.44.0.jar') do
describe file('/usr/local/selenium/server/selenium-server-standalone-2.45.0.jar') do
it { should be_file }
it { should be_executable.by_user('root') }
end
Expand Down

0 comments on commit c2de23b

Please sign in to comment.