watir-formhandler 2.3.2 → 2.4.0
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.
- checksums.yaml +4 -4
- data/README.md +14 -1
- data/lib/watir-formhandler.rb +14 -0
- data/lib/{watir_formhandler → watir-formhandler}/check_box.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/container.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/element.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/file_field.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/option_group.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/radio.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/select.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/text_area.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/text_field.rb +0 -0
- data/lib/{watir_formhandler → watir-formhandler}/watir.rb +0 -0
- data/spec/spec_helper.rb +1 -1
- metadata +14 -14
- data/lib/watir_formhandler.rb +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be25cc8fcb65673adef902afa110861e82dceb53
|
|
4
|
+
data.tar.gz: 86687953ff40767bfdb6c6ddf88abaeda180e9b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8aaa1fa108ca1786168b44c1f2eb294c3e86b09067de19eff6ecf7afa8a38f757a57eddabaac8a72f5a079aba9989fa7be76c3429b8eb88141c0eab0f7a0fb6
|
|
7
|
+
data.tar.gz: 8bf7219567519779618497bfa0710e558b6238f3a5128a6d703c753c637fdfa8c6172069a107ad47015987ef06c40759f5a3bd8b374c62fc56854579a1c23f9d
|
data/README.md
CHANGED
|
@@ -16,6 +16,7 @@ Extends some Watir classes to provide a more comfortale handling for forms and t
|
|
|
16
16
|
* [#fill_in](#fill_in)
|
|
17
17
|
* [OptionGroup](#optiongroup)
|
|
18
18
|
* [:start_node](#start_node)
|
|
19
|
+
* [Latest Changes](#latest-changes)
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
## Installation
|
|
@@ -113,4 +114,16 @@ for these kind of groups, if the respective options has been activated.
|
|
|
113
114
|
The new methods _#field_ and _#fill_in_ will start their search for the specified label with the
|
|
114
115
|
given String on the Container on which it is called, by default. However, you may specify an
|
|
115
116
|
arbitrary _start_node_ from which to start, which will probably be most useful when calling the
|
|
116
|
-
methods directly on your Watir::Browser instance.
|
|
117
|
+
methods directly on your Watir::Browser instance.
|
|
118
|
+
|
|
119
|
+
***
|
|
120
|
+
***
|
|
121
|
+
|
|
122
|
+
### Latest Changes
|
|
123
|
+
|
|
124
|
+
#### Version 2.4.0
|
|
125
|
+
|
|
126
|
+
* Renamed the files in such a way that the gem can now properly required with a hyphen like the
|
|
127
|
+
gem name instead of an underscore:
|
|
128
|
+
|
|
129
|
+
require 'watir-formhandler'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require 'watir'
|
|
2
|
+
require 'watir-webdriver'
|
|
3
|
+
require 'selenium-webdriver'
|
|
4
|
+
|
|
5
|
+
require 'watir-formhandler/watir'
|
|
6
|
+
require 'watir-formhandler/element'
|
|
7
|
+
require 'watir-formhandler/option_group'
|
|
8
|
+
require 'watir-formhandler/container'
|
|
9
|
+
require 'watir-formhandler/check_box'
|
|
10
|
+
require 'watir-formhandler/select'
|
|
11
|
+
require 'watir-formhandler/radio'
|
|
12
|
+
require 'watir-formhandler/text_field'
|
|
13
|
+
require 'watir-formhandler/text_area'
|
|
14
|
+
require 'watir-formhandler/file_field'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: watir-formhandler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yves Komenda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: watir
|
|
@@ -40,7 +40,7 @@ dependencies:
|
|
|
40
40
|
version: 0.6.11
|
|
41
41
|
description: |-
|
|
42
42
|
Adds some convenience methods to fill out forms in Watir.
|
|
43
|
-
Latest changes:
|
|
43
|
+
Latest changes: gem can now be correctly required with >require "watir-formhandler"<
|
|
44
44
|
email:
|
|
45
45
|
- b_d_v@web.de
|
|
46
46
|
executables: []
|
|
@@ -49,17 +49,17 @@ extra_rdoc_files:
|
|
|
49
49
|
- README.md
|
|
50
50
|
files:
|
|
51
51
|
- README.md
|
|
52
|
-
- lib/
|
|
53
|
-
- lib/
|
|
54
|
-
- lib/
|
|
55
|
-
- lib/
|
|
56
|
-
- lib/
|
|
57
|
-
- lib/
|
|
58
|
-
- lib/
|
|
59
|
-
- lib/
|
|
60
|
-
- lib/
|
|
61
|
-
- lib/
|
|
62
|
-
- lib/
|
|
52
|
+
- lib/watir-formhandler.rb
|
|
53
|
+
- lib/watir-formhandler/check_box.rb
|
|
54
|
+
- lib/watir-formhandler/container.rb
|
|
55
|
+
- lib/watir-formhandler/element.rb
|
|
56
|
+
- lib/watir-formhandler/file_field.rb
|
|
57
|
+
- lib/watir-formhandler/option_group.rb
|
|
58
|
+
- lib/watir-formhandler/radio.rb
|
|
59
|
+
- lib/watir-formhandler/select.rb
|
|
60
|
+
- lib/watir-formhandler/text_area.rb
|
|
61
|
+
- lib/watir-formhandler/text_field.rb
|
|
62
|
+
- lib/watir-formhandler/watir.rb
|
|
63
63
|
- spec/check_box_spec.rb
|
|
64
64
|
- spec/container_spec.rb
|
|
65
65
|
- spec/file_field_spec.rb
|
data/lib/watir_formhandler.rb
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
require 'watir'
|
|
2
|
-
require 'watir-webdriver'
|
|
3
|
-
require 'selenium-webdriver'
|
|
4
|
-
|
|
5
|
-
require 'watir_formhandler/watir'
|
|
6
|
-
require 'watir_formhandler/element'
|
|
7
|
-
require 'watir_formhandler/option_group'
|
|
8
|
-
require 'watir_formhandler/container'
|
|
9
|
-
require 'watir_formhandler/check_box'
|
|
10
|
-
require 'watir_formhandler/select'
|
|
11
|
-
require 'watir_formhandler/radio'
|
|
12
|
-
require 'watir_formhandler/text_field'
|
|
13
|
-
require 'watir_formhandler/text_area'
|
|
14
|
-
require 'watir_formhandler/file_field'
|