watir-formhandler 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -2
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5e4b363f3156b19ab9d61c9fb72b1f3694b1cab
4
- data.tar.gz: 21add3a253b471a36b37b7e6bf2fa2bed1b0de42
3
+ metadata.gz: c34b9d70174d220290bce2a6c43ef4f61e83105b
4
+ data.tar.gz: 49658eef327f01c33e1375685256acd7c99e3d2f
5
5
  SHA512:
6
- metadata.gz: 450eeb218b9120a69530ace025fe25951f2037cccd6483c2ba4e625096109e7af12cf31c39add13cb765bdcfe43a09de6619fb43f16c0084bba46fc6dc9e5f95
7
- data.tar.gz: e08264e4cb7a1d32aa9eae54b6d78a55c6c8fbfe467d44f4a75c914f1e18211f3deb0360e75dbdcbb5d2bebfaae6875ba08efa7132e263e6d0ee23be450d7b47
6
+ metadata.gz: 36d753f787fbc9a90efe8bd09231837da5d5d510400275795bc266285dad53e1b438d1af956a798dc5b4016743821b855150d25412cbe9cba262aa67f4a2980d
7
+ data.tar.gz: 609060efa1df89be59e01794a1daba709a4c9cba54406246f5e8fbd6dc3567f2d89bb167fe45b21063272206f6d73f4afdffc00990a06af7a5671c49fca5d7ef
data/README.md CHANGED
@@ -100,10 +100,10 @@ its current value.
100
100
  browser = Watir::Browser.new('example_site')
101
101
  form = browser.form(id: 'my_form')
102
102
 
103
- form.read_field('Some Text Field') # Reads the value of field labeled
103
+ form.value_of('Some Text Field') # Reads the value of field labeled
104
104
  # 'Some Text Field'
105
105
 
106
- form.fill_in('Some Text Field', placeholder: true) # Reads the value of a TextField with
106
+ form.value_of('Some Text Field', placeholder: true) # Reads the value of a TextField with
107
107
  # placeholder 'Some Text Field'
108
108
 
109
109
 
@@ -138,6 +138,10 @@ methods directly on your Watir::Browser instance.
138
138
 
139
139
  ### Latest Changes
140
140
 
141
+ #### Version 2.6.1
142
+
143
+ * Fixed documentation of #value_of method
144
+
141
145
  #### Version 2.6.0
142
146
 
143
147
  * Added #value_of method that works in the exact same way as #fill_in, but which returns the
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watir-formhandler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yves Komenda