page-object 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,3 +1,9 @@
1
+ === Version 0.4.3 / 2011-10-07
2
+ * Enhancements
3
+ * The new watir and selenium fix a fairly serious problem when working with modals and attaching to windows
4
+ * Updated to use selenium-webdriver 2.8.0
5
+ * Updated to use watir-webdriver 0.3.5
6
+
1
7
  === Version 0.4.2 / 2011-10-01
2
8
  * Enhancements
3
9
  * Proper handling of <button> elements
@@ -319,7 +319,7 @@ module PageObject
319
319
  # * :id => Watir and Selenium
320
320
  # * :index => Watir and Selenium
321
321
  # * :name => Watir and Selenium
322
- # * :text => Watir only
322
+ # * :text => Watir and Selenium
323
323
  # * :value => Watir and Selenium
324
324
  # * :xpath => Watir and Selenium
325
325
  # @param optional block to be invoked when element method is called
@@ -435,7 +435,7 @@ module PageObject
435
435
  # by combining of any of the following except xpath. The valid keys are:
436
436
  # * :class => Watir and Selenium
437
437
  # * :id => Watir and Selenium
438
- # * :index => Watir only
438
+ # * :index => Watir and Selenium
439
439
  # * :name => Watir and Selenium
440
440
  # * :text => Watir and Selenium
441
441
  # * :xpath => Watir and Selenium
@@ -1,4 +1,4 @@
1
1
  module PageObject
2
2
  # @private
3
- VERSION = "0.4.2"
3
+ VERSION = "0.4.3"
4
4
  end
data/page-object.gemspec CHANGED
@@ -19,8 +19,8 @@ Gem::Specification.new do |s|
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
20
20
  s.require_paths = ["lib"]
21
21
 
22
- s.add_dependency 'watir-webdriver', '>= 0.3.4'
23
- s.add_dependency 'selenium-webdriver', '>= 2.7.0'
22
+ s.add_dependency 'watir-webdriver', '>= 0.3.5'
23
+ s.add_dependency 'selenium-webdriver', '>= 2.8.0'
24
24
  s.add_dependency 'mixology'
25
25
 
26
26
  s.add_development_dependency 'rspec', '>= 2.6.0'
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: page-object
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.4.2
5
+ version: 0.4.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jeff Morgan
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-10-01 00:00:00 Z
13
+ date: 2011-10-07 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: watir-webdriver
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.3.4
23
+ version: 0.3.5
24
24
  type: :runtime
25
25
  version_requirements: *id001
26
26
  - !ruby/object:Gem::Dependency
@@ -31,7 +31,7 @@ dependencies:
31
31
  requirements:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
- version: 2.7.0
34
+ version: 2.8.0
35
35
  type: :runtime
36
36
  version_requirements: *id002
37
37
  - !ruby/object:Gem::Dependency