firewatir 1.9.3 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +7 -26
- data/VERSION +1 -1
- data/firewatir.gemspec +0 -1
- data/lib/firewatir/firefox.rb +1 -4
- metadata +4 -4
data/CHANGES
CHANGED
@@ -1,29 +1,10 @@
|
|
1
|
-
== Version
|
2
|
-
|
3
|
-
*
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
* all element methods accept now multiple-specifiers with hash syntax, for example:
|
9
|
-
- browser.element(:class => "someclass", :name => "somename")
|
10
|
-
* all elements are searchable by :xpath and :css now (note that it's usually slower than searching by other specifiers)
|
11
|
-
* #button, #form and #frame doesn't accept single string as a specifier anymore to search by name:
|
12
|
-
- use browser.frame(:name => "name") or browser.frame(:name, "name") syntax instead
|
13
|
-
* :index => 0 is used as a default specifier if nothing is specified:
|
14
|
-
- browser.div(:id => "id").table.tr is same as browser.div(:id => "id").table(:index => 0).tr(:index => 0)
|
15
|
-
* all collection methods accept now specifiers too:
|
16
|
-
- browser.divs(:class => "someclass").each {|div| puts div.class_name} # => "someclass"
|
17
|
-
* removed FormElement class
|
18
|
-
* renamed CheckBox class to Checkbox
|
19
|
-
* renamed CheckBoxes class to Checkboxes
|
20
|
-
* added aliases:
|
21
|
-
- tr => row
|
22
|
-
- trs => rows
|
23
|
-
- td => cell
|
24
|
-
- tds => cells
|
25
|
-
- a => link
|
26
|
-
- as => links
|
1
|
+
== Version 1.9.4 - 2011/09/10
|
2
|
+
|
3
|
+
* #execute_script should not call #wait
|
4
|
+
|
5
|
+
== Version 1.9.3 - 2011/07/24
|
6
|
+
|
7
|
+
* Only FireWatir version released to make a dependency for commonwatir to be less strict to make it possible to use FireWatir together with Watir 2+ versions if needed.
|
27
8
|
|
28
9
|
== Version 1.9.2 - 2011/07/11
|
29
10
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.9.
|
1
|
+
1.9.4
|
data/firewatir.gemspec
CHANGED
@@ -39,7 +39,6 @@ spec = Gem::Specification.new do |s|
|
|
39
39
|
|
40
40
|
s.add_dependency 'commonwatir', '>=1.9.2'
|
41
41
|
|
42
|
-
s.has_rdoc = true
|
43
42
|
s.rdoc_options <<
|
44
43
|
'--title' << 'FireWatir API Reference' <<
|
45
44
|
'--accessor' << 'def_wrap=R,def_wrap_guard=R,def_creator=R,def_creator_with_default=R' <<
|
data/lib/firewatir/firefox.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: firewatir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 59
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 1.9.
|
9
|
+
- 4
|
10
|
+
version: 1.9.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Angrez Singh
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-09-10 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: commonwatir
|