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 CHANGED
@@ -1,29 +1,10 @@
1
- == Version 2.0.0 - 2011/07/XX
2
-
3
- * RIP FireWatir - there won't be any new releases
4
- * all elements are using 0-based indexing instead of old 1-based indexing:
5
- - disable it temporarily: require "watir"; Watir.options[:zero_based_indexing] = false
6
- * #radio and #checkbox methods doesn't allow 3 parameters anymore for locating with "value"
7
- - use browser.radio(:name => "something", :value => "some value") syntax instead for locating with "value"
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.3
1
+ 1.9.4
@@ -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' <<
@@ -133,10 +133,7 @@ module FireWatir
133
133
 
134
134
  # Executes the given JavaScript string
135
135
  def execute_script(source)
136
- result = js_eval source.to_s
137
- wait()
138
-
139
- result
136
+ js_eval source.to_s
140
137
  end
141
138
 
142
139
  private
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: 53
4
+ hash: 59
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 9
9
- - 3
10
- version: 1.9.3
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-07-24 00:00:00 Z
18
+ date: 2011-09-10 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: commonwatir