operawatir 0.4-jruby → 0.4.1-jruby
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/.gitmodules +3 -3
- data/AUTHORS +1 -0
- data/CHANGES +454 -0
- data/README.md +67 -50
- data/Rakefile +6 -10
- data/VERSION +1 -1
- data/bin/desktopwatir +52 -29
- data/bin/operawatir +50 -18
- data/lib/operadriver/client-combined-nodeps.jar +0 -0
- data/lib/operadriver/webdriver-opera.jar +0 -0
- data/lib/operawatir.rb +8 -1
- data/lib/operawatir/browser.rb +35 -15
- data/lib/operawatir/collection.rb +2 -2
- data/lib/operawatir/compat.rb +3 -2
- data/lib/operawatir/compat/browser.rb +0 -5
- data/lib/operawatir/compat/collection.rb +15 -0
- data/lib/operawatir/compat/element.rb +72 -21
- data/lib/operawatir/compat/element_finders.rb +6 -0
- data/lib/operawatir/compat/selector.rb +7 -0
- data/lib/operawatir/compat/window.rb +49 -0
- data/lib/operawatir/desktop_browser.rb +88 -14
- data/lib/operawatir/desktop_common.rb +0 -2
- data/lib/operawatir/desktop_container.rb +82 -29
- data/lib/operawatir/desktop_helper.rb +2 -0
- data/lib/operawatir/element.rb +49 -25
- data/lib/operawatir/helper.rb +5 -3
- data/lib/operawatir/keys.rb +19 -6
- data/lib/operawatir/preferences.rb +315 -78
- data/lib/operawatir/quickwidgets.rb +2 -1
- data/lib/operawatir/quickwidgets/quick_addressfield.rb +12 -0
- data/lib/operawatir/quickwidgets/quick_button.rb +8 -2
- data/lib/operawatir/quickwidgets/quick_checkbox.rb +5 -5
- data/lib/operawatir/quickwidgets/quick_editfield.rb +8 -5
- data/lib/operawatir/quickwidgets/quick_find.rb +11 -0
- data/lib/operawatir/quickwidgets/quick_griditem.rb +11 -0
- data/lib/operawatir/quickwidgets/quick_gridlayout.rb +11 -0
- data/lib/operawatir/quickwidgets/quick_searchfield.rb +7 -1
- data/lib/operawatir/quickwidgets/quick_tab.rb +0 -1
- data/lib/operawatir/quickwidgets/quick_treeitem.rb +22 -1
- data/lib/operawatir/quickwidgets/quick_widget.rb +62 -23
- data/lib/operawatir/quickwidgets/quick_window.rb +32 -2
- data/lib/operawatir/screenshot.rb +46 -0
- data/lib/operawatir/version.rb +6 -4
- data/lib/operawatir/window.rb +53 -67
- data/operawatir.gemspec +310 -245
- data/spec/operawatir/README.md +4 -0
- data/spec/operawatir/core/browser_spec.rb +82 -0
- data/spec/operawatir/core/element_spec.rb +88 -0
- data/spec/operawatir/core/preferences_spec.rb +438 -0
- data/spec/operawatir/core/screenshot_spec.rb +76 -0
- data/spec/{new_watirspec → operawatir/core}/spatnav_spec.rb +3 -3
- data/spec/operawatir/core/window_spec.rb +76 -0
- data/spec/operawatir/desktop/desktopbrowser_spec.rb +316 -0
- data/spec/operawatir/desktop/quickaddressfield_spec.rb +59 -0
- data/spec/operawatir/desktop/quickbutton_spec.rb +248 -0
- data/spec/operawatir/desktop/quickcheckbox_spec.rb +36 -0
- data/spec/operawatir/desktop/quickdialogtab_spec.rb +30 -0
- data/spec/operawatir/desktop/quickdropdown_spec.rb +39 -0
- data/spec/operawatir/desktop/quickeditfield_spec.rb +51 -0
- data/spec/operawatir/desktop/quickfind_spec.rb +30 -0
- data/spec/operawatir/desktop/quickgriditem_spec.rb +16 -0
- data/spec/operawatir/desktop/quickgridlayout_spec.rb +15 -0
- data/spec/operawatir/desktop/quicklabel_spec.rb +28 -0
- data/spec/operawatir/desktop/quickradiobutton_spec.rb +24 -0
- data/spec/operawatir/desktop/quicksearchfield_spec.rb +26 -0
- data/spec/operawatir/desktop/quicktab_spec.rb +86 -0
- data/spec/operawatir/desktop/quickthumbnail_spec.rb +37 -0
- data/spec/operawatir/desktop/quicktreeitem_spec.rb +135 -0
- data/spec/operawatir/desktop/quicktreeview_spec.rb +30 -0
- data/spec/operawatir/desktop/quickwidget_spec.rb +101 -0
- data/spec/operawatir/desktop/quickwindow_spec.rb +108 -0
- data/spec/operawatir/desktop/shared/shared.rb +138 -0
- data/spec/operawatir/fixtures/boxes.html +22 -0
- data/spec/operawatir/fixtures/browsers.svg +367 -0
- data/spec/operawatir/fixtures/frames.html +13 -0
- data/spec/operawatir/fixtures/grid.html +29 -0
- data/spec/operawatir/fixtures/input_fields_value.html +6 -0
- data/spec/operawatir/fixtures/onclick.html +20 -0
- data/spec/operawatir/fixtures/paragraphs.html +15 -0
- data/spec/operawatir/fixtures/two_input_fields.html +6 -0
- data/spec/{new_watirspec → operawatir}/guards.rb +0 -0
- data/spec/operawatir/matchers.rb +68 -0
- data/spec/{legacy_watirspec → operawatir}/server.rb +0 -0
- data/spec/operawatir/watirspec.rake +43 -0
- data/spec/operawatir/watirspec_desktophelper.rb +14 -0
- data/spec/operawatir/watirspec_helper.rb +62 -0
- data/spec/{legacy_watirspec → watir2}/area_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/areas_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/browser_spec.rb +2 -0
- data/spec/{legacy_watirspec → watir2}/button_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/buttons_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/checkbox_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/checkboxes_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/collections_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dd_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dds_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/del_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dels_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/div_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/divs_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dl_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dls_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dt_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/dts_spec.rb +0 -0
- data/spec/watir2/element_spec.rb +155 -0
- data/spec/{legacy_watirspec → watir2}/em_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/ems_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/filefield_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/filefields_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/2000_spans.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/bug_duplicate_attributes.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/bug_javascript_001.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/buttons_with_duplicate_ids.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/collections.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/definition_lists.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/euc-jp_text.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/forms_with_input_elements.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/frame_1.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/frame_2.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/frames.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/iframes.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/1.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/2.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/3.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/button.jpg +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/circle.jpg +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/map.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/map2.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/minus.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/originaltriangle.jpg +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/plus.gif +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/square.jpg +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/images/triangle.jpg +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/iso-2022-jp_text.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/javascript/helpers.js +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/jquery.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/latin1_text.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/multiple_ids.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/non_control_elements.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/parser_bug_001.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/prevent_form_submit.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/right_click.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/shift_jis_text.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/tables.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/timeout.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/timeout_window_location.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/tiny_mce.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/utf8_text.html +0 -0
- data/spec/{legacy_watirspec → watir2}/fixtures/watirspec.css +0 -0
- data/spec/{legacy_watirspec → watir2}/form_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/forms_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/frame_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/frames_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/guards.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/hidden_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/hiddens_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/hn_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/hns_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/image_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/images_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/ins_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/inses_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/label_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/labels_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/li_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/link_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/links_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/lis_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/map_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/maps_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/meta_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/metas_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/ol_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/ols_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/option_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/p_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/pre_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/pres_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/ps_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/radio_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/radios_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/select_list_spec.rb +84 -71
- data/spec/{legacy_watirspec → watir2}/select_lists_spec.rb +0 -0
- data/spec/{new_watirspec → watir2}/server.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/span_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/spans_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/spec_helper.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/strong_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/strongs_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_bodies_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_body_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_cell_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_cells_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_footer_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_footers_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_header_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_headers_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_row_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_rows_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/table_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/tables_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/text_field_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/text_fields_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/ul_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/uls_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/watir_compatibility_spec.rb +0 -0
- data/spec/{legacy_watirspec → watir2}/watirspec_helper.rb +0 -0
- data/spec/{new_watirspec → watir3}/browser_spec.rb +11 -21
- data/spec/{new_watirspec → watir3}/clipboard_spec.rb +2 -2
- data/spec/{new_watirspec → watir3}/collection_spec.rb +0 -0
- data/spec/{new_watirspec → watir3}/element_spec.rb +30 -12
- data/spec/watir3/guards.rb +39 -0
- data/spec/{new_watirspec → watir3}/keys_spec.rb +0 -0
- data/spec/watir3/server.rb +91 -0
- data/spec/{new_watirspec → watir3}/watirspec_helper.rb +0 -0
- data/spec/{new_watirspec → watir3}/window_spec.rb +8 -83
- metadata +315 -280
- data/lib/operadriver/selenium-common.jar +0 -0
- data/spec/legacy_watirspec/element_spec.rb +0 -86
- data/spec/new_watirspec/preferences_spec.rb +0 -144
- data/spec/new_watirspec/screenshot_spec.rb +0 -34
metadata
CHANGED
@@ -5,7 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 4
|
8
|
-
|
8
|
+
- 1
|
9
|
+
version: 0.4.1
|
9
10
|
platform: jruby
|
10
11
|
authors:
|
11
12
|
- Andreas Tolf Tolfsen
|
@@ -16,7 +17,7 @@ autorequire:
|
|
16
17
|
bindir: bin
|
17
18
|
cert_chain: []
|
18
19
|
|
19
|
-
date: 2011-
|
20
|
+
date: 2011-05-19 00:00:00 +02:00
|
20
21
|
default_executable:
|
21
22
|
dependencies:
|
22
23
|
- !ruby/object:Gem::Dependency
|
@@ -126,7 +127,7 @@ dependencies:
|
|
126
127
|
name: rspec
|
127
128
|
version_requirements: &id009 !ruby/object:Gem::Requirement
|
128
129
|
requirements:
|
129
|
-
- - "
|
130
|
+
- - ">="
|
130
131
|
- !ruby/object:Gem::Version
|
131
132
|
segments:
|
132
133
|
- 2
|
@@ -136,20 +137,19 @@ dependencies:
|
|
136
137
|
prerelease: false
|
137
138
|
type: :runtime
|
138
139
|
- !ruby/object:Gem::Dependency
|
139
|
-
name:
|
140
|
+
name: deprecated
|
140
141
|
version_requirements: &id010 !ruby/object:Gem::Requirement
|
141
142
|
requirements:
|
142
143
|
- - ">="
|
143
144
|
- !ruby/object:Gem::Version
|
144
145
|
segments:
|
145
146
|
- 0
|
146
|
-
|
147
|
-
version: "0.3"
|
147
|
+
version: "0"
|
148
148
|
requirement: *id010
|
149
149
|
prerelease: false
|
150
150
|
type: :runtime
|
151
151
|
- !ruby/object:Gem::Dependency
|
152
|
-
name:
|
152
|
+
name: jeweler
|
153
153
|
version_requirements: &id011 !ruby/object:Gem::Requirement
|
154
154
|
requirements:
|
155
155
|
- - ">="
|
@@ -159,60 +159,22 @@ dependencies:
|
|
159
159
|
version: "0"
|
160
160
|
requirement: *id011
|
161
161
|
prerelease: false
|
162
|
-
type: :runtime
|
163
|
-
- !ruby/object:Gem::Dependency
|
164
|
-
name: activesupport
|
165
|
-
version_requirements: &id012 !ruby/object:Gem::Requirement
|
166
|
-
requirements:
|
167
|
-
- - ">="
|
168
|
-
- !ruby/object:Gem::Version
|
169
|
-
segments:
|
170
|
-
- 3
|
171
|
-
- 0
|
172
|
-
- 1
|
173
|
-
version: 3.0.1
|
174
|
-
requirement: *id012
|
175
|
-
prerelease: false
|
176
|
-
type: :runtime
|
177
|
-
- !ruby/object:Gem::Dependency
|
178
|
-
name: deprecated
|
179
|
-
version_requirements: &id013 !ruby/object:Gem::Requirement
|
180
|
-
requirements:
|
181
|
-
- - ">="
|
182
|
-
- !ruby/object:Gem::Version
|
183
|
-
segments:
|
184
|
-
- 0
|
185
|
-
version: "0"
|
186
|
-
requirement: *id013
|
187
|
-
prerelease: false
|
188
|
-
type: :runtime
|
189
|
-
- !ruby/object:Gem::Dependency
|
190
|
-
name: jeweler
|
191
|
-
version_requirements: &id014 !ruby/object:Gem::Requirement
|
192
|
-
requirements:
|
193
|
-
- - ">="
|
194
|
-
- !ruby/object:Gem::Version
|
195
|
-
segments:
|
196
|
-
- 0
|
197
|
-
version: "0"
|
198
|
-
requirement: *id014
|
199
|
-
prerelease: false
|
200
162
|
type: :development
|
201
163
|
- !ruby/object:Gem::Dependency
|
202
164
|
name: rake
|
203
|
-
version_requirements: &
|
165
|
+
version_requirements: &id012 !ruby/object:Gem::Requirement
|
204
166
|
requirements:
|
205
167
|
- - ">="
|
206
168
|
- !ruby/object:Gem::Version
|
207
169
|
segments:
|
208
170
|
- 0
|
209
171
|
version: "0"
|
210
|
-
requirement: *
|
172
|
+
requirement: *id012
|
211
173
|
prerelease: false
|
212
174
|
type: :development
|
213
175
|
- !ruby/object:Gem::Dependency
|
214
176
|
name: BlueCloth
|
215
|
-
version_requirements: &
|
177
|
+
version_requirements: &id013 !ruby/object:Gem::Requirement
|
216
178
|
requirements:
|
217
179
|
- - "="
|
218
180
|
- !ruby/object:Gem::Version
|
@@ -221,24 +183,24 @@ dependencies:
|
|
221
183
|
- 0
|
222
184
|
- 1
|
223
185
|
version: 1.0.1
|
224
|
-
requirement: *
|
186
|
+
requirement: *id013
|
225
187
|
prerelease: false
|
226
188
|
type: :development
|
227
189
|
- !ruby/object:Gem::Dependency
|
228
190
|
name: yard
|
229
|
-
version_requirements: &
|
191
|
+
version_requirements: &id014 !ruby/object:Gem::Requirement
|
230
192
|
requirements:
|
231
193
|
- - ">="
|
232
194
|
- !ruby/object:Gem::Version
|
233
195
|
segments:
|
234
196
|
- 0
|
235
197
|
version: "0"
|
236
|
-
requirement: *
|
198
|
+
requirement: *id014
|
237
199
|
prerelease: false
|
238
200
|
type: :development
|
239
201
|
- !ruby/object:Gem::Dependency
|
240
202
|
name: mongrel
|
241
|
-
version_requirements: &
|
203
|
+
version_requirements: &id015 !ruby/object:Gem::Requirement
|
242
204
|
requirements:
|
243
205
|
- - ">="
|
244
206
|
- !ruby/object:Gem::Version
|
@@ -247,12 +209,12 @@ dependencies:
|
|
247
209
|
- 1
|
248
210
|
- 5
|
249
211
|
version: 1.1.5
|
250
|
-
requirement: *
|
212
|
+
requirement: *id015
|
251
213
|
prerelease: false
|
252
214
|
type: :development
|
253
215
|
- !ruby/object:Gem::Dependency
|
254
216
|
name: sinatra
|
255
|
-
version_requirements: &
|
217
|
+
version_requirements: &id016 !ruby/object:Gem::Requirement
|
256
218
|
requirements:
|
257
219
|
- - ">="
|
258
220
|
- !ruby/object:Gem::Version
|
@@ -260,34 +222,34 @@ dependencies:
|
|
260
222
|
- 1
|
261
223
|
- 1
|
262
224
|
version: "1.1"
|
263
|
-
requirement: *
|
225
|
+
requirement: *id016
|
264
226
|
prerelease: false
|
265
227
|
type: :development
|
266
228
|
- !ruby/object:Gem::Dependency
|
267
229
|
name: rr
|
268
|
-
version_requirements: &
|
230
|
+
version_requirements: &id017 !ruby/object:Gem::Requirement
|
269
231
|
requirements:
|
270
232
|
- - ">="
|
271
233
|
- !ruby/object:Gem::Version
|
272
234
|
segments:
|
273
235
|
- 0
|
274
236
|
version: "0"
|
275
|
-
requirement: *
|
237
|
+
requirement: *id017
|
276
238
|
prerelease: false
|
277
239
|
type: :development
|
278
240
|
- !ruby/object:Gem::Dependency
|
279
241
|
name: clipboard
|
280
|
-
version_requirements: &
|
242
|
+
version_requirements: &id018 !ruby/object:Gem::Requirement
|
281
243
|
requirements:
|
282
244
|
- - ">="
|
283
245
|
- !ruby/object:Gem::Version
|
284
246
|
segments:
|
285
247
|
- 0
|
286
248
|
version: "0"
|
287
|
-
requirement: *
|
249
|
+
requirement: *id018
|
288
250
|
prerelease: false
|
289
251
|
type: :development
|
290
|
-
description: " OperaWatir is a part of the Watir (pronounced water) family of\n free software Ruby libraries for automating web
|
252
|
+
description: " OperaWatir is a part of the Watir (pronounced water) family of\n free software Ruby libraries for automating web browsers.\n OperaWatir provides a querying engine and Ruby bindings for a\n backend Java library, OperaDriver, for driving the Opera web\n browser. It aims for full compliancy with the Watir 2 and Watir 3\n specifications.\n"
|
291
253
|
email:
|
292
254
|
- andreastt@opera.com
|
293
255
|
- christopherl@opera.com
|
@@ -304,6 +266,7 @@ files:
|
|
304
266
|
- .gitmodules
|
305
267
|
- .yardopts
|
306
268
|
- AUTHORS
|
269
|
+
- CHANGES
|
307
270
|
- Gemfile
|
308
271
|
- LICENSE
|
309
272
|
- README.md
|
@@ -313,10 +276,10 @@ files:
|
|
313
276
|
- bin/operawatir
|
314
277
|
- lib/operadriver/APACHE_2.0_LICENSE.txt
|
315
278
|
- lib/operadriver/NEW_BSD_LICENSE.txt
|
279
|
+
- lib/operadriver/client-combined-nodeps.jar
|
316
280
|
- lib/operadriver/commons-io-2.0.1.jar
|
317
281
|
- lib/operadriver/commons-jxpath-1.3.jar
|
318
282
|
- lib/operadriver/protobuf-java-2.3.0.jar
|
319
|
-
- lib/operadriver/selenium-common.jar
|
320
283
|
- lib/operadriver/webdriver-opera.jar
|
321
284
|
- lib/operawatir.rb
|
322
285
|
- lib/operawatir/browser.rb
|
@@ -326,6 +289,7 @@ files:
|
|
326
289
|
- lib/operawatir/compat/collection.rb
|
327
290
|
- lib/operawatir/compat/element.rb
|
328
291
|
- lib/operawatir/compat/element_finders.rb
|
292
|
+
- lib/operawatir/compat/selector.rb
|
329
293
|
- lib/operawatir/compat/window.rb
|
330
294
|
- lib/operawatir/desktop-waiter.rb
|
331
295
|
- lib/operawatir/desktop_browser.rb
|
@@ -347,6 +311,9 @@ files:
|
|
347
311
|
- lib/operawatir/quickwidgets/quick_dialogtab.rb
|
348
312
|
- lib/operawatir/quickwidgets/quick_dropdown.rb
|
349
313
|
- lib/operawatir/quickwidgets/quick_editfield.rb
|
314
|
+
- lib/operawatir/quickwidgets/quick_find.rb
|
315
|
+
- lib/operawatir/quickwidgets/quick_griditem.rb
|
316
|
+
- lib/operawatir/quickwidgets/quick_gridlayout.rb
|
350
317
|
- lib/operawatir/quickwidgets/quick_label.rb
|
351
318
|
- lib/operawatir/quickwidgets/quick_radiobutton.rb
|
352
319
|
- lib/operawatir/quickwidgets/quick_searchfield.rb
|
@@ -357,6 +324,7 @@ files:
|
|
357
324
|
- lib/operawatir/quickwidgets/quick_treeview.rb
|
358
325
|
- lib/operawatir/quickwidgets/quick_widget.rb
|
359
326
|
- lib/operawatir/quickwidgets/quick_window.rb
|
327
|
+
- lib/operawatir/screenshot.rb
|
360
328
|
- lib/operawatir/selector.rb
|
361
329
|
- lib/operawatir/spatnav.rb
|
362
330
|
- lib/operawatir/version.rb
|
@@ -374,128 +342,169 @@ files:
|
|
374
342
|
- spec/fire_event/interactive/onMouseOver.html
|
375
343
|
- spec/fire_event/interactive/onMouseUp.html
|
376
344
|
- spec/fire_event/interactive/onScroll.html
|
377
|
-
- spec/
|
378
|
-
- spec/
|
379
|
-
- spec/
|
380
|
-
- spec/
|
381
|
-
- spec/
|
382
|
-
- spec/
|
383
|
-
- spec/
|
384
|
-
- spec/
|
385
|
-
- spec/
|
386
|
-
- spec/
|
387
|
-
- spec/
|
388
|
-
- spec/
|
389
|
-
- spec/
|
390
|
-
- spec/
|
391
|
-
- spec/
|
392
|
-
- spec/
|
393
|
-
- spec/
|
394
|
-
- spec/
|
395
|
-
- spec/
|
396
|
-
- spec/
|
397
|
-
- spec/
|
398
|
-
- spec/
|
399
|
-
- spec/
|
400
|
-
- spec/
|
401
|
-
- spec/
|
402
|
-
- spec/
|
403
|
-
- spec/
|
404
|
-
- spec/
|
405
|
-
- spec/
|
406
|
-
- spec/
|
407
|
-
- spec/
|
408
|
-
- spec/
|
409
|
-
- spec/
|
410
|
-
- spec/
|
411
|
-
- spec/
|
412
|
-
- spec/
|
413
|
-
- spec/
|
414
|
-
- spec/
|
415
|
-
- spec/
|
416
|
-
- spec/
|
417
|
-
- spec/
|
418
|
-
- spec/
|
419
|
-
- spec/
|
420
|
-
- spec/
|
421
|
-
- spec/
|
422
|
-
- spec/
|
423
|
-
- spec/
|
424
|
-
- spec/
|
425
|
-
- spec/
|
426
|
-
- spec/
|
427
|
-
- spec/
|
428
|
-
- spec/
|
429
|
-
- spec/
|
430
|
-
- spec/
|
431
|
-
- spec/
|
432
|
-
- spec/
|
433
|
-
- spec/
|
434
|
-
- spec/
|
435
|
-
- spec/
|
436
|
-
- spec/
|
437
|
-
- spec/
|
438
|
-
- spec/
|
439
|
-
- spec/
|
440
|
-
- spec/
|
441
|
-
- spec/
|
442
|
-
- spec/
|
443
|
-
- spec/
|
444
|
-
- spec/
|
445
|
-
- spec/
|
446
|
-
- spec/
|
447
|
-
- spec/
|
448
|
-
- spec/
|
449
|
-
- spec/
|
450
|
-
- spec/
|
451
|
-
- spec/
|
452
|
-
- spec/
|
453
|
-
- spec/
|
454
|
-
- spec/
|
455
|
-
- spec/
|
456
|
-
- spec/
|
457
|
-
- spec/
|
458
|
-
- spec/
|
459
|
-
- spec/
|
460
|
-
- spec/
|
461
|
-
- spec/
|
462
|
-
- spec/
|
463
|
-
- spec/
|
464
|
-
- spec/
|
465
|
-
- spec/
|
466
|
-
- spec/
|
467
|
-
- spec/
|
468
|
-
- spec/
|
469
|
-
- spec/
|
470
|
-
- spec/
|
471
|
-
- spec/
|
472
|
-
- spec/
|
473
|
-
- spec/
|
474
|
-
- spec/
|
475
|
-
- spec/
|
476
|
-
- spec/
|
477
|
-
- spec/
|
478
|
-
- spec/
|
479
|
-
- spec/
|
480
|
-
- spec/
|
481
|
-
- spec/
|
482
|
-
- spec/
|
483
|
-
- spec/
|
484
|
-
- spec/
|
485
|
-
- spec/
|
486
|
-
- spec/
|
487
|
-
- spec/
|
488
|
-
- spec/
|
489
|
-
- spec/
|
490
|
-
- spec/
|
491
|
-
- spec/
|
492
|
-
- spec/
|
493
|
-
- spec/
|
494
|
-
- spec/
|
495
|
-
- spec/
|
496
|
-
- spec/
|
497
|
-
- spec/
|
498
|
-
- spec/
|
345
|
+
- spec/operawatir/README.md
|
346
|
+
- spec/operawatir/core/browser_spec.rb
|
347
|
+
- spec/operawatir/core/element_spec.rb
|
348
|
+
- spec/operawatir/core/preferences_spec.rb
|
349
|
+
- spec/operawatir/core/screenshot_spec.rb
|
350
|
+
- spec/operawatir/core/spatnav_spec.rb
|
351
|
+
- spec/operawatir/core/window_spec.rb
|
352
|
+
- spec/operawatir/desktop/desktopbrowser_spec.rb
|
353
|
+
- spec/operawatir/desktop/quickaddressfield_spec.rb
|
354
|
+
- spec/operawatir/desktop/quickbutton_spec.rb
|
355
|
+
- spec/operawatir/desktop/quickcheckbox_spec.rb
|
356
|
+
- spec/operawatir/desktop/quickdialogtab_spec.rb
|
357
|
+
- spec/operawatir/desktop/quickdropdown_spec.rb
|
358
|
+
- spec/operawatir/desktop/quickeditfield_spec.rb
|
359
|
+
- spec/operawatir/desktop/quickfind_spec.rb
|
360
|
+
- spec/operawatir/desktop/quickgriditem_spec.rb
|
361
|
+
- spec/operawatir/desktop/quickgridlayout_spec.rb
|
362
|
+
- spec/operawatir/desktop/quicklabel_spec.rb
|
363
|
+
- spec/operawatir/desktop/quickradiobutton_spec.rb
|
364
|
+
- spec/operawatir/desktop/quicksearchfield_spec.rb
|
365
|
+
- spec/operawatir/desktop/quicktab_spec.rb
|
366
|
+
- spec/operawatir/desktop/quickthumbnail_spec.rb
|
367
|
+
- spec/operawatir/desktop/quicktreeitem_spec.rb
|
368
|
+
- spec/operawatir/desktop/quicktreeview_spec.rb
|
369
|
+
- spec/operawatir/desktop/quickwidget_spec.rb
|
370
|
+
- spec/operawatir/desktop/quickwindow_spec.rb
|
371
|
+
- spec/operawatir/desktop/shared/shared.rb
|
372
|
+
- spec/operawatir/fixtures/boxes.html
|
373
|
+
- spec/operawatir/fixtures/browsers.svg
|
374
|
+
- spec/operawatir/fixtures/frames.html
|
375
|
+
- spec/operawatir/fixtures/grid.html
|
376
|
+
- spec/operawatir/fixtures/input_fields_value.html
|
377
|
+
- spec/operawatir/fixtures/onclick.html
|
378
|
+
- spec/operawatir/fixtures/paragraphs.html
|
379
|
+
- spec/operawatir/fixtures/two_input_fields.html
|
380
|
+
- spec/operawatir/guards.rb
|
381
|
+
- spec/operawatir/matchers.rb
|
382
|
+
- spec/operawatir/server.rb
|
383
|
+
- spec/operawatir/watirspec.rake
|
384
|
+
- spec/operawatir/watirspec_desktophelper.rb
|
385
|
+
- spec/operawatir/watirspec_helper.rb
|
386
|
+
- spec/watir2/area_spec.rb
|
387
|
+
- spec/watir2/areas_spec.rb
|
388
|
+
- spec/watir2/browser_spec.rb
|
389
|
+
- spec/watir2/button_spec.rb
|
390
|
+
- spec/watir2/buttons_spec.rb
|
391
|
+
- spec/watir2/checkbox_spec.rb
|
392
|
+
- spec/watir2/checkboxes_spec.rb
|
393
|
+
- spec/watir2/collections_spec.rb
|
394
|
+
- spec/watir2/dd_spec.rb
|
395
|
+
- spec/watir2/dds_spec.rb
|
396
|
+
- spec/watir2/del_spec.rb
|
397
|
+
- spec/watir2/dels_spec.rb
|
398
|
+
- spec/watir2/div_spec.rb
|
399
|
+
- spec/watir2/divs_spec.rb
|
400
|
+
- spec/watir2/dl_spec.rb
|
401
|
+
- spec/watir2/dls_spec.rb
|
402
|
+
- spec/watir2/dt_spec.rb
|
403
|
+
- spec/watir2/dts_spec.rb
|
404
|
+
- spec/watir2/element_spec.rb
|
405
|
+
- spec/watir2/em_spec.rb
|
406
|
+
- spec/watir2/ems_spec.rb
|
407
|
+
- spec/watir2/filefield_spec.rb
|
408
|
+
- spec/watir2/filefields_spec.rb
|
409
|
+
- spec/watir2/fixtures/2000_spans.html
|
410
|
+
- spec/watir2/fixtures/bug_duplicate_attributes.html
|
411
|
+
- spec/watir2/fixtures/bug_javascript_001.html
|
412
|
+
- spec/watir2/fixtures/buttons_with_duplicate_ids.html
|
413
|
+
- spec/watir2/fixtures/collections.html
|
414
|
+
- spec/watir2/fixtures/definition_lists.html
|
415
|
+
- spec/watir2/fixtures/euc-jp_text.html
|
416
|
+
- spec/watir2/fixtures/forms_with_input_elements.html
|
417
|
+
- spec/watir2/fixtures/frame_1.html
|
418
|
+
- spec/watir2/fixtures/frame_2.html
|
419
|
+
- spec/watir2/fixtures/frames.html
|
420
|
+
- spec/watir2/fixtures/iframes.html
|
421
|
+
- spec/watir2/fixtures/images.html
|
422
|
+
- spec/watir2/fixtures/images/1.gif
|
423
|
+
- spec/watir2/fixtures/images/2.gif
|
424
|
+
- spec/watir2/fixtures/images/3.gif
|
425
|
+
- spec/watir2/fixtures/images/button.jpg
|
426
|
+
- spec/watir2/fixtures/images/circle.jpg
|
427
|
+
- spec/watir2/fixtures/images/map.gif
|
428
|
+
- spec/watir2/fixtures/images/map2.gif
|
429
|
+
- spec/watir2/fixtures/images/minus.gif
|
430
|
+
- spec/watir2/fixtures/images/originaltriangle.jpg
|
431
|
+
- spec/watir2/fixtures/images/plus.gif
|
432
|
+
- spec/watir2/fixtures/images/square.jpg
|
433
|
+
- spec/watir2/fixtures/images/triangle.jpg
|
434
|
+
- spec/watir2/fixtures/iso-2022-jp_text.html
|
435
|
+
- spec/watir2/fixtures/javascript/helpers.js
|
436
|
+
- spec/watir2/fixtures/jquery.html
|
437
|
+
- spec/watir2/fixtures/latin1_text.html
|
438
|
+
- spec/watir2/fixtures/multiple_ids.html
|
439
|
+
- spec/watir2/fixtures/non_control_elements.html
|
440
|
+
- spec/watir2/fixtures/parser_bug_001.html
|
441
|
+
- spec/watir2/fixtures/prevent_form_submit.html
|
442
|
+
- spec/watir2/fixtures/right_click.html
|
443
|
+
- spec/watir2/fixtures/shift_jis_text.html
|
444
|
+
- spec/watir2/fixtures/tables.html
|
445
|
+
- spec/watir2/fixtures/timeout.html
|
446
|
+
- spec/watir2/fixtures/timeout_window_location.html
|
447
|
+
- spec/watir2/fixtures/tiny_mce.html
|
448
|
+
- spec/watir2/fixtures/utf8_text.html
|
449
|
+
- spec/watir2/fixtures/watirspec.css
|
450
|
+
- spec/watir2/form_spec.rb
|
451
|
+
- spec/watir2/forms_spec.rb
|
452
|
+
- spec/watir2/frame_spec.rb
|
453
|
+
- spec/watir2/frames_spec.rb
|
454
|
+
- spec/watir2/guards.rb
|
455
|
+
- spec/watir2/hidden_spec.rb
|
456
|
+
- spec/watir2/hiddens_spec.rb
|
457
|
+
- spec/watir2/hn_spec.rb
|
458
|
+
- spec/watir2/hns_spec.rb
|
459
|
+
- spec/watir2/image_spec.rb
|
460
|
+
- spec/watir2/images_spec.rb
|
461
|
+
- spec/watir2/ins_spec.rb
|
462
|
+
- spec/watir2/inses_spec.rb
|
463
|
+
- spec/watir2/label_spec.rb
|
464
|
+
- spec/watir2/labels_spec.rb
|
465
|
+
- spec/watir2/li_spec.rb
|
466
|
+
- spec/watir2/link_spec.rb
|
467
|
+
- spec/watir2/links_spec.rb
|
468
|
+
- spec/watir2/lis_spec.rb
|
469
|
+
- spec/watir2/map_spec.rb
|
470
|
+
- spec/watir2/maps_spec.rb
|
471
|
+
- spec/watir2/meta_spec.rb
|
472
|
+
- spec/watir2/metas_spec.rb
|
473
|
+
- spec/watir2/ol_spec.rb
|
474
|
+
- spec/watir2/ols_spec.rb
|
475
|
+
- spec/watir2/option_spec.rb
|
476
|
+
- spec/watir2/p_spec.rb
|
477
|
+
- spec/watir2/pre_spec.rb
|
478
|
+
- spec/watir2/pres_spec.rb
|
479
|
+
- spec/watir2/ps_spec.rb
|
480
|
+
- spec/watir2/radio_spec.rb
|
481
|
+
- spec/watir2/radios_spec.rb
|
482
|
+
- spec/watir2/select_list_spec.rb
|
483
|
+
- spec/watir2/select_lists_spec.rb
|
484
|
+
- spec/watir2/server.rb
|
485
|
+
- spec/watir2/span_spec.rb
|
486
|
+
- spec/watir2/spans_spec.rb
|
487
|
+
- spec/watir2/spec_helper.rb
|
488
|
+
- spec/watir2/strong_spec.rb
|
489
|
+
- spec/watir2/strongs_spec.rb
|
490
|
+
- spec/watir2/table_bodies_spec.rb
|
491
|
+
- spec/watir2/table_body_spec.rb
|
492
|
+
- spec/watir2/table_cell_spec.rb
|
493
|
+
- spec/watir2/table_cells_spec.rb
|
494
|
+
- spec/watir2/table_footer_spec.rb
|
495
|
+
- spec/watir2/table_footers_spec.rb
|
496
|
+
- spec/watir2/table_header_spec.rb
|
497
|
+
- spec/watir2/table_headers_spec.rb
|
498
|
+
- spec/watir2/table_row_spec.rb
|
499
|
+
- spec/watir2/table_rows_spec.rb
|
500
|
+
- spec/watir2/table_spec.rb
|
501
|
+
- spec/watir2/tables_spec.rb
|
502
|
+
- spec/watir2/text_field_spec.rb
|
503
|
+
- spec/watir2/text_fields_spec.rb
|
504
|
+
- spec/watir2/ul_spec.rb
|
505
|
+
- spec/watir2/uls_spec.rb
|
506
|
+
- spec/watir2/watir_compatibility_spec.rb
|
507
|
+
- spec/watir2/watirspec_helper.rb
|
499
508
|
- utils/Rakefile
|
500
509
|
- utils/formatters/operahelper_formatter.rb
|
501
510
|
- utils/formatters/spartan_formatter.rb
|
@@ -513,10 +522,8 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
513
522
|
- - ">="
|
514
523
|
- !ruby/object:Gem::Version
|
515
524
|
segments:
|
516
|
-
-
|
517
|
-
|
518
|
-
- 7
|
519
|
-
version: 1.8.7
|
525
|
+
- 0
|
526
|
+
version: "0"
|
520
527
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
521
528
|
requirements:
|
522
529
|
- - ">="
|
@@ -533,96 +540,124 @@ specification_version: 3
|
|
533
540
|
summary: Toolkit for automating interactions with the Opera web browser.
|
534
541
|
test_files:
|
535
542
|
- spec/fire_event/fire_event.rb
|
536
|
-
- spec/
|
537
|
-
- spec/
|
538
|
-
- spec/
|
539
|
-
- spec/
|
540
|
-
- spec/
|
541
|
-
- spec/
|
542
|
-
- spec/
|
543
|
-
- spec/
|
544
|
-
- spec/
|
545
|
-
- spec/
|
546
|
-
- spec/
|
547
|
-
- spec/
|
548
|
-
- spec/
|
549
|
-
- spec/
|
550
|
-
- spec/
|
551
|
-
- spec/
|
552
|
-
- spec/
|
553
|
-
- spec/
|
554
|
-
- spec/
|
555
|
-
- spec/
|
556
|
-
- spec/
|
557
|
-
- spec/
|
558
|
-
- spec/
|
559
|
-
- spec/
|
560
|
-
- spec/
|
561
|
-
- spec/
|
562
|
-
- spec/
|
563
|
-
- spec/
|
564
|
-
- spec/
|
565
|
-
- spec/
|
566
|
-
- spec/
|
567
|
-
- spec/
|
568
|
-
- spec/
|
569
|
-
- spec/
|
570
|
-
- spec/
|
571
|
-
- spec/
|
572
|
-
- spec/
|
573
|
-
- spec/
|
574
|
-
- spec/
|
575
|
-
- spec/
|
576
|
-
- spec/
|
577
|
-
- spec/
|
578
|
-
- spec/
|
579
|
-
- spec/
|
580
|
-
- spec/
|
581
|
-
- spec/
|
582
|
-
- spec/
|
583
|
-
- spec/
|
584
|
-
- spec/
|
585
|
-
- spec/
|
586
|
-
- spec/
|
587
|
-
- spec/
|
588
|
-
- spec/
|
589
|
-
- spec/
|
590
|
-
- spec/
|
591
|
-
- spec/
|
592
|
-
- spec/
|
593
|
-
- spec/
|
594
|
-
- spec/
|
595
|
-
- spec/
|
596
|
-
- spec/
|
597
|
-
- spec/
|
598
|
-
- spec/
|
599
|
-
- spec/
|
600
|
-
- spec/
|
601
|
-
- spec/
|
602
|
-
- spec/
|
603
|
-
- spec/
|
604
|
-
- spec/
|
605
|
-
- spec/
|
606
|
-
- spec/
|
607
|
-
- spec/
|
608
|
-
- spec/
|
609
|
-
- spec/
|
610
|
-
- spec/
|
611
|
-
- spec/
|
612
|
-
- spec/
|
613
|
-
- spec/
|
614
|
-
- spec/
|
615
|
-
- spec/
|
616
|
-
- spec/
|
617
|
-
- spec/
|
618
|
-
- spec/
|
619
|
-
- spec/
|
620
|
-
- spec/
|
621
|
-
- spec/
|
622
|
-
- spec/
|
623
|
-
- spec/
|
624
|
-
- spec/
|
625
|
-
- spec/
|
626
|
-
- spec/
|
627
|
-
- spec/
|
628
|
-
- spec/
|
543
|
+
- spec/operawatir/core/browser_spec.rb
|
544
|
+
- spec/operawatir/core/element_spec.rb
|
545
|
+
- spec/operawatir/core/preferences_spec.rb
|
546
|
+
- spec/operawatir/core/screenshot_spec.rb
|
547
|
+
- spec/operawatir/core/spatnav_spec.rb
|
548
|
+
- spec/operawatir/core/window_spec.rb
|
549
|
+
- spec/operawatir/desktop/desktopbrowser_spec.rb
|
550
|
+
- spec/operawatir/desktop/quickaddressfield_spec.rb
|
551
|
+
- spec/operawatir/desktop/quickbutton_spec.rb
|
552
|
+
- spec/operawatir/desktop/quickcheckbox_spec.rb
|
553
|
+
- spec/operawatir/desktop/quickdialogtab_spec.rb
|
554
|
+
- spec/operawatir/desktop/quickdropdown_spec.rb
|
555
|
+
- spec/operawatir/desktop/quickeditfield_spec.rb
|
556
|
+
- spec/operawatir/desktop/quickfind_spec.rb
|
557
|
+
- spec/operawatir/desktop/quickgriditem_spec.rb
|
558
|
+
- spec/operawatir/desktop/quickgridlayout_spec.rb
|
559
|
+
- spec/operawatir/desktop/quicklabel_spec.rb
|
560
|
+
- spec/operawatir/desktop/quickradiobutton_spec.rb
|
561
|
+
- spec/operawatir/desktop/quicksearchfield_spec.rb
|
562
|
+
- spec/operawatir/desktop/quicktab_spec.rb
|
563
|
+
- spec/operawatir/desktop/quickthumbnail_spec.rb
|
564
|
+
- spec/operawatir/desktop/quicktreeitem_spec.rb
|
565
|
+
- spec/operawatir/desktop/quicktreeview_spec.rb
|
566
|
+
- spec/operawatir/desktop/quickwidget_spec.rb
|
567
|
+
- spec/operawatir/desktop/quickwindow_spec.rb
|
568
|
+
- spec/operawatir/desktop/shared/shared.rb
|
569
|
+
- spec/operawatir/guards.rb
|
570
|
+
- spec/operawatir/matchers.rb
|
571
|
+
- spec/operawatir/server.rb
|
572
|
+
- spec/operawatir/watirspec_desktophelper.rb
|
573
|
+
- spec/operawatir/watirspec_helper.rb
|
574
|
+
- spec/watir2/area_spec.rb
|
575
|
+
- spec/watir2/areas_spec.rb
|
576
|
+
- spec/watir2/browser_spec.rb
|
577
|
+
- spec/watir2/button_spec.rb
|
578
|
+
- spec/watir2/buttons_spec.rb
|
579
|
+
- spec/watir2/checkbox_spec.rb
|
580
|
+
- spec/watir2/checkboxes_spec.rb
|
581
|
+
- spec/watir2/collections_spec.rb
|
582
|
+
- spec/watir2/dd_spec.rb
|
583
|
+
- spec/watir2/dds_spec.rb
|
584
|
+
- spec/watir2/del_spec.rb
|
585
|
+
- spec/watir2/dels_spec.rb
|
586
|
+
- spec/watir2/div_spec.rb
|
587
|
+
- spec/watir2/divs_spec.rb
|
588
|
+
- spec/watir2/dl_spec.rb
|
589
|
+
- spec/watir2/dls_spec.rb
|
590
|
+
- spec/watir2/dt_spec.rb
|
591
|
+
- spec/watir2/dts_spec.rb
|
592
|
+
- spec/watir2/element_spec.rb
|
593
|
+
- spec/watir2/em_spec.rb
|
594
|
+
- spec/watir2/ems_spec.rb
|
595
|
+
- spec/watir2/filefield_spec.rb
|
596
|
+
- spec/watir2/filefields_spec.rb
|
597
|
+
- spec/watir2/form_spec.rb
|
598
|
+
- spec/watir2/forms_spec.rb
|
599
|
+
- spec/watir2/frame_spec.rb
|
600
|
+
- spec/watir2/frames_spec.rb
|
601
|
+
- spec/watir2/guards.rb
|
602
|
+
- spec/watir2/hidden_spec.rb
|
603
|
+
- spec/watir2/hiddens_spec.rb
|
604
|
+
- spec/watir2/hn_spec.rb
|
605
|
+
- spec/watir2/hns_spec.rb
|
606
|
+
- spec/watir2/image_spec.rb
|
607
|
+
- spec/watir2/images_spec.rb
|
608
|
+
- spec/watir2/ins_spec.rb
|
609
|
+
- spec/watir2/inses_spec.rb
|
610
|
+
- spec/watir2/label_spec.rb
|
611
|
+
- spec/watir2/labels_spec.rb
|
612
|
+
- spec/watir2/li_spec.rb
|
613
|
+
- spec/watir2/link_spec.rb
|
614
|
+
- spec/watir2/links_spec.rb
|
615
|
+
- spec/watir2/lis_spec.rb
|
616
|
+
- spec/watir2/map_spec.rb
|
617
|
+
- spec/watir2/maps_spec.rb
|
618
|
+
- spec/watir2/meta_spec.rb
|
619
|
+
- spec/watir2/metas_spec.rb
|
620
|
+
- spec/watir2/ol_spec.rb
|
621
|
+
- spec/watir2/ols_spec.rb
|
622
|
+
- spec/watir2/option_spec.rb
|
623
|
+
- spec/watir2/p_spec.rb
|
624
|
+
- spec/watir2/pre_spec.rb
|
625
|
+
- spec/watir2/pres_spec.rb
|
626
|
+
- spec/watir2/ps_spec.rb
|
627
|
+
- spec/watir2/radio_spec.rb
|
628
|
+
- spec/watir2/radios_spec.rb
|
629
|
+
- spec/watir2/select_list_spec.rb
|
630
|
+
- spec/watir2/select_lists_spec.rb
|
631
|
+
- spec/watir2/server.rb
|
632
|
+
- spec/watir2/span_spec.rb
|
633
|
+
- spec/watir2/spans_spec.rb
|
634
|
+
- spec/watir2/spec_helper.rb
|
635
|
+
- spec/watir2/strong_spec.rb
|
636
|
+
- spec/watir2/strongs_spec.rb
|
637
|
+
- spec/watir2/table_bodies_spec.rb
|
638
|
+
- spec/watir2/table_body_spec.rb
|
639
|
+
- spec/watir2/table_cell_spec.rb
|
640
|
+
- spec/watir2/table_cells_spec.rb
|
641
|
+
- spec/watir2/table_footer_spec.rb
|
642
|
+
- spec/watir2/table_footers_spec.rb
|
643
|
+
- spec/watir2/table_header_spec.rb
|
644
|
+
- spec/watir2/table_headers_spec.rb
|
645
|
+
- spec/watir2/table_row_spec.rb
|
646
|
+
- spec/watir2/table_rows_spec.rb
|
647
|
+
- spec/watir2/table_spec.rb
|
648
|
+
- spec/watir2/tables_spec.rb
|
649
|
+
- spec/watir2/text_field_spec.rb
|
650
|
+
- spec/watir2/text_fields_spec.rb
|
651
|
+
- spec/watir2/ul_spec.rb
|
652
|
+
- spec/watir2/uls_spec.rb
|
653
|
+
- spec/watir2/watir_compatibility_spec.rb
|
654
|
+
- spec/watir2/watirspec_helper.rb
|
655
|
+
- spec/watir3/browser_spec.rb
|
656
|
+
- spec/watir3/clipboard_spec.rb
|
657
|
+
- spec/watir3/collection_spec.rb
|
658
|
+
- spec/watir3/element_spec.rb
|
659
|
+
- spec/watir3/guards.rb
|
660
|
+
- spec/watir3/keys_spec.rb
|
661
|
+
- spec/watir3/server.rb
|
662
|
+
- spec/watir3/watirspec_helper.rb
|
663
|
+
- spec/watir3/window_spec.rb
|