commonwatir 1.6.7 → 1.7.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +16 -2
- data/README.rdoc +5 -5
- data/VERSION +1 -1
- metadata +12 -9
data/CHANGES
CHANGED
@@ -1,9 +1,23 @@
|
|
1
|
+
== Version 1.7.0 - 2010/12/20
|
2
|
+
|
3
|
+
=== IE improvements
|
4
|
+
|
5
|
+
* Fixed Watir::IE#close_all. Closes http://jira.openqa.org/browse/WTR-463 (Jarmo Pertman)
|
6
|
+
* IE#wait waits now again until browser has a state of READYSTATE_COMPLETE due to strange timing issues. Closes http://jira.openqa.org/browse/WTR-466 (Jarmo Pertman)
|
7
|
+
* Added CSS3 selectors with usage like browser.text_field(:css => "input[name='text1']") (Jonas Tingeborn)
|
8
|
+
* Updated bundled version of AutoIt to 3.3.6.1. Closes http://jira.openqa.org/browse/WTR-440 (Jarmo Pertman)
|
9
|
+
|
10
|
+
=== Firefox improvements
|
11
|
+
|
12
|
+
* Fixed Element#exists? for cases where nested elements were used for locating (Alok Menghrajani)
|
13
|
+
* Ignore uppercase tags in XHTML when searching for elements (Alok Menghrajani)
|
14
|
+
|
1
15
|
== Version 1.6.7 - 2010/10/26
|
2
16
|
|
3
17
|
=== General improvements
|
4
18
|
|
5
|
-
* added new waiting methods
|
6
|
-
* added new waiting methods
|
19
|
+
* added new waiting methods for Watir::Element: #when_present, #wait_until_present and #wait_while_present (Jari Bakken and Jarmo Pertman)
|
20
|
+
* added new waiting methods for Watir::IE and Watir::Firefox: #wait_until and #wait_while (Jari Bakken and Jarmo Pertman)
|
7
21
|
* added method #present? for Watir::Element (Jari Bakken and Jarmo Pertman)
|
8
22
|
* deprecated old waiting methods in Watir::Waiter which will be removed in some future version - use Watir::Wait instead (Jarmo Pertman)
|
9
23
|
|
data/README.rdoc
CHANGED
@@ -46,11 +46,11 @@ To install Firefox driver:
|
|
46
46
|
|
47
47
|
Some examples from http://watir.com/examples
|
48
48
|
|
49
|
-
|
49
|
+
Loading Watir gem to drive Internet Explorer on Windows
|
50
50
|
|
51
51
|
require 'watir'
|
52
52
|
|
53
|
-
|
53
|
+
Loading FireWatir gem to drive Firefox on Windows/Mac/Linux
|
54
54
|
|
55
55
|
require 'firewatir'
|
56
56
|
|
@@ -69,8 +69,8 @@ Setting a multi-line text box
|
|
69
69
|
|
70
70
|
Setting and clearing a radio button
|
71
71
|
|
72
|
-
browser.radio(:value => "
|
73
|
-
browser.radio(:value => "
|
72
|
+
browser.radio(:value => "Watir").set
|
73
|
+
browser.radio(:value => "Watir").clear
|
74
74
|
|
75
75
|
Setting and clearing check boxes
|
76
76
|
|
@@ -94,7 +94,7 @@ Clicking a button
|
|
94
94
|
|
95
95
|
Checking for text in a page
|
96
96
|
|
97
|
-
puts browser.text.include?
|
97
|
+
puts browser.text.include?("Your response has been recorded.")
|
98
98
|
|
99
99
|
Checking the title of a page
|
100
100
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.7.0.rc1
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commonwatir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 977940582
|
5
|
+
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
-
- 6
|
9
8
|
- 7
|
10
|
-
|
9
|
+
- 0
|
10
|
+
- rc1
|
11
|
+
version: 1.7.0.rc1
|
11
12
|
platform: ruby
|
12
13
|
authors:
|
13
14
|
- Bret Pettichord
|
@@ -15,7 +16,7 @@ autorequire:
|
|
15
16
|
bindir: bin
|
16
17
|
cert_chain: []
|
17
18
|
|
18
|
-
date: 2010-
|
19
|
+
date: 2010-12-21 00:00:00 +02:00
|
19
20
|
default_executable:
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
@@ -122,12 +123,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
124
|
none: false
|
124
125
|
requirements:
|
125
|
-
- - "
|
126
|
+
- - ">"
|
126
127
|
- !ruby/object:Gem::Version
|
127
|
-
hash:
|
128
|
+
hash: 25
|
128
129
|
segments:
|
129
|
-
-
|
130
|
-
|
130
|
+
- 1
|
131
|
+
- 3
|
132
|
+
- 1
|
133
|
+
version: 1.3.1
|
131
134
|
requirements: []
|
132
135
|
|
133
136
|
rubyforge_project: wtr
|