ole-qa-framework 2.1.2 → 2.2.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.
data/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .idea/
19
+ .project/
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ### v2.2.0 - 2013/07/22
2
+
3
+ * Staff Upload
4
+ * staff upload page added to OLELS
5
+ * accessible through OLEFS main menu page, but coded on OLELS
6
+
7
+ ### v2.1.2 - 2013/07/18
8
+
9
+ * Compatibility Update
10
+ * No new or updated definitions added.
11
+
12
+
1
13
  ### v2.1.1 - 2013/07/12
2
14
 
3
15
  * Fix Bib Editor
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '2.1.2'
18
+ VERSION = '2.2.0'
19
19
  end
20
20
  end
@@ -0,0 +1,51 @@
1
+ # Copyright 2005-2013 The Kuali Foundation
2
+ #
3
+ # Licensed under the Educational Community License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at:
6
+ #
7
+ # http://www.opensource.org/licenses/ecl2.php
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module OLE_QA::Framework::OLELS
16
+ # The OLE Library System Staff Upload page, accessible from the OLE Financial System main menu.
17
+ class Staff_Upload < OLE_QA::Framework::Page
18
+
19
+ def initialize(ole_session)
20
+ url = ole_session.ls_url + 'portal.do?channelTitle=Staff%20Upload&channelUrl='
21
+ url += ole_session.ls_url + 'ole-kr-krad/staffuploadcontroller?viewId=StaffUploadView&methodToCall=start&__login_user=admin&user=ole-khuntley'
22
+ super(ole_session, url)
23
+ end
24
+
25
+ # Set elements for Staff upload screen.
26
+ def set_elements
27
+ element(:title) {browser.h1(:class => 'uif-headerText').span}
28
+ element(:marc_field) {browser.input(:id => "StaffUploadView-marcFileUpload_control").to_subtype}
29
+ element(:edi_field) {browser.input(:id => "StaffUploadView-ediFileUpload_control").to_subtype}
30
+ element(:profile_selector) {browser.select_list(:id => "StaffUploadView-agenda_control")}
31
+ element(:description_field) {browser.input(:id => "StaffUploadView-agendaDescription_control").to_subtype}
32
+ element(:upload_button) {browser.button(:id => "uploadButton")}
33
+ element(:cancel_button) {browser.button(:id => "cancelButton")}
34
+ element(:load_reports_button) {browser.button(:id => "loadReportsButton")}
35
+ element(:message) {browser.div(:id => 'MessageFieldSection').span}
36
+ end
37
+
38
+ # Wait for title to appear.
39
+ def wait_for_elements
40
+ @wait_on << :title
41
+ super
42
+ end
43
+
44
+ # Add commonly-used functions for staff upload screen.
45
+ def set_functions
46
+ # Clicks the upload button and waits for a message to appear.
47
+ # - Returns the text of the upload message.
48
+ function(:upload) {upload_button.click ; wait_for_page_to_load ; message.when_present.text.strip }
49
+ end
50
+ end
51
+ end
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "http://www.github.com/jkwaldrip/ole-qa-framework/"
14
14
  spec.license = "ECLv2"
15
15
 
16
- spec.files = Dir.glob("**/**/**")
16
+ spec.files = `git ls-files`.split($/)
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
@@ -0,0 +1,55 @@
1
+ # Copyright 2005-2013 The Kuali Foundation
2
+ #
3
+ # Licensed under the Educational Community License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at:
6
+ #
7
+ # http://www.opensource.org/licenses/ecl2.php
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require 'rspec'
16
+ require 'spec_helper'
17
+
18
+ describe 'An OLELS Staff Upload page' do
19
+
20
+ before :all do
21
+ @ole = OLE_QA::Framework::Session.new
22
+ @page = OLE_QA::Framework::OLELS::Staff_Upload.new(@ole)
23
+ end
24
+
25
+ after :all do
26
+ @ole.quit
27
+ end
28
+
29
+ it 'should create a new instance' do
30
+ @page.should be_an_instance_of(OLE_QA::Framework::OLELS::Staff_Upload)
31
+ @page.class.superclass.should == OLE_QA::Framework::Page
32
+ end
33
+
34
+ it 'should have staff upload elements' do
35
+ elements = @page.elements
36
+ elements.should include(:title)
37
+ elements.should include(:marc_field)
38
+ elements.should include(:edi_field)
39
+ elements.should include(:profile_selector)
40
+ elements.should include(:description_field)
41
+ elements.should include(:upload_button)
42
+ elements.should include(:cancel_button)
43
+ elements.should include(:load_reports_button)
44
+ end
45
+
46
+ it 'should have staff upload functions' do
47
+ functions = @page.functions
48
+ functions.should include(:upload)
49
+ end
50
+
51
+ it 'should open the staff upload screen via URL' do
52
+ @page.open
53
+ @page.title.text.strip.should == 'Staff Upload'
54
+ end
55
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ole-qa-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -115,132 +115,131 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
+ - .gitignore
119
+ - CHANGELOG.md
120
+ - Gemfile
121
+ - LICENSE.md
118
122
  - README.md
119
- - ole-qa-framework.gemspec
120
- - pkg/ole-qa-framework-2.1.1.gem
121
- - pkg/ole-qa-framework-2.1.2.gem
122
- - pkg/ole-qa-framework-2.1.0.gem
123
- - examples/purap_workflow_test.rb
123
+ - Rakefile.rb
124
124
  - examples/README.md
125
- - examples/create_requisition.rb
126
125
  - examples/create_bib_record.rb
127
- - spec/olefs/purchase_order_spec.rb
128
- - spec/olefs/payment_request_spec.rb
129
- - spec/olefs/preq_creation_spec.rb
130
- - spec/olefs/patron_lookup_spec.rb
131
- - spec/olefs/line_item_spec.rb
132
- - spec/olefs/receiving_line_spec.rb
133
- - spec/olefs/copies_line_spec.rb
134
- - spec/olefs/purap_document_spec.rb
135
- - spec/olefs/preq_line_item_spec.rb
136
- - spec/olefs/lookup_spec.rb
137
- - spec/olefs/processing_line_spec.rb
138
- - spec/olefs/exception_notes_line_spec.rb
139
- - spec/olefs/invoice_notes_line_spec.rb
140
- - spec/olefs/receipt_notes_line_spec.rb
141
- - spec/olefs/edocs_spec.rb
142
- - spec/olefs/notes_line_spec.rb
143
- - spec/olefs/vendor_lookup_spec.rb
144
- - spec/olefs/main_menu_spec.rb
145
- - spec/olefs/receive_spec.rb
146
- - spec/olefs/requisition_spec.rb
147
- - spec/olefs/building_lookup_spec.rb
148
- - spec/olefs/accounting_line_spec.rb
149
- - spec/modules/qa_helpers_spec.rb
150
- - spec/modules/qa_page_helpers_spec.rb
151
- - spec/workflows/purap_spec.rb
152
- - spec/common/subline_object_spec.rb
153
- - spec/common/browser_spec.rb
154
- - spec/common/data_object_spec.rb
155
- - spec/common/line_object_spec.rb
156
- - spec/common/page_spec.rb
157
- - spec/olels/bib_editor_spec.rb
158
- - spec/olels/item_editor_spec.rb
159
- - spec/olels/loan_spec.rb
160
- - spec/olels/item_note_spec.rb
161
- - spec/olels/describe_workbench_spec.rb
162
- - spec/olels/access_info_line_spec.rb
163
- - spec/olels/data_line_spec.rb
164
- - spec/olels/return_spec.rb
165
- - spec/olels/editor_spec.rb
166
- - spec/olels/lookup_spec.rb
167
- - spec/olels/ownership_extent_line_spec.rb
168
- - spec/olels/edocs_spec.rb
169
- - spec/olels/main_menu_spec.rb
170
- - spec/olels/ownership_note_spec.rb
171
- - spec/olels/instance_editor_spec.rb
172
- - spec/olels/holdings_note_spec_spec.rb
173
- - spec/spec_helper.rb
174
- - Gemfile
175
- - Rakefile.rb
176
- - lib/olefs/objects/receiving_line.rb
126
+ - examples/create_requisition.rb
127
+ - examples/purap_workflow_test.rb
128
+ - lib/common/common_object.rb
129
+ - lib/common/data_object.rb
130
+ - lib/common/line_object.rb
131
+ - lib/common/page.rb
132
+ - lib/common/subline_object.rb
133
+ - lib/config/alt/dev_env.yml
134
+ - lib/config/alt/test_env.yml
135
+ - lib/config/default_options.yml
136
+ - lib/docstore/docstore.rb
137
+ - lib/module/qa_data_helpers.rb
138
+ - lib/module/qa_helpers.rb
139
+ - lib/module/qa_page_helpers.rb
140
+ - lib/ole-qa-framework.rb
141
+ - lib/ole_qa_framework/COMPATIBILITY.rb
142
+ - lib/ole_qa_framework/VERSION.rb
143
+ - lib/olefs/common/e_doc.rb
144
+ - lib/olefs/common/line_object.rb
145
+ - lib/olefs/common/lookup.rb
146
+ - lib/olefs/common/purap_document.rb
147
+ - lib/olefs/objects/line_item.rb
177
148
  - lib/olefs/objects/new_line_item.rb
178
149
  - lib/olefs/objects/new_preq_line_item.rb
179
- - lib/olefs/objects/preq_line_item.rb
180
150
  - lib/olefs/objects/new_receiving_line.rb
181
- - lib/olefs/objects/line_item.rb
182
- - lib/olefs/subobjects/new_invoice_notes_line.rb
183
- - lib/olefs/subobjects/new_copies_line.rb
151
+ - lib/olefs/objects/preq_line_item.rb
152
+ - lib/olefs/objects/receiving_line.rb
153
+ - lib/olefs/pages/building_lookup.rb
154
+ - lib/olefs/pages/main_menu.rb
155
+ - lib/olefs/pages/payment_request.rb
156
+ - lib/olefs/pages/payment_request_creation.rb
157
+ - lib/olefs/pages/purchase_order.rb
158
+ - lib/olefs/pages/receiving_document.rb
159
+ - lib/olefs/pages/requisition.rb
160
+ - lib/olefs/pages/vendor_lookup.rb
184
161
  - lib/olefs/subobjects/accounting_line.rb
185
- - lib/olefs/subobjects/new_receipt_notes_line.rb
162
+ - lib/olefs/subobjects/copies_line.rb
186
163
  - lib/olefs/subobjects/exception_notes_line.rb
187
- - lib/olefs/subobjects/receipt_notes_line.rb
164
+ - lib/olefs/subobjects/invoice_notes_line.rb
188
165
  - lib/olefs/subobjects/new_accounting_line.rb
189
- - lib/olefs/subobjects/processing_line.rb
190
- - lib/olefs/subobjects/copies_line.rb
166
+ - lib/olefs/subobjects/new_copies_line.rb
191
167
  - lib/olefs/subobjects/new_exception_notes_line.rb
192
- - lib/olefs/subobjects/invoice_notes_line.rb
168
+ - lib/olefs/subobjects/new_invoice_notes_line.rb
193
169
  - lib/olefs/subobjects/new_notes_line.rb
170
+ - lib/olefs/subobjects/new_receipt_notes_line.rb
194
171
  - lib/olefs/subobjects/notes_line.rb
195
- - lib/olefs/common/line_object.rb
196
- - lib/olefs/common/e_doc.rb
197
- - lib/olefs/common/purap_document.rb
198
- - lib/olefs/common/lookup.rb
199
- - lib/olefs/pages/purchase_order.rb
200
- - lib/olefs/pages/main_menu.rb
201
- - lib/olefs/pages/payment_request_creation.rb
202
- - lib/olefs/pages/requisition.rb
203
- - lib/olefs/pages/vendor_lookup.rb
204
- - lib/olefs/pages/receiving_document.rb
205
- - lib/olefs/pages/payment_request.rb
206
- - lib/olefs/pages/building_lookup.rb
207
- - lib/ole-qa-framework.rb
208
- - lib/config/alt/dev_env.yml
209
- - lib/config/alt/test_env.yml
210
- - lib/config/default_options.yml
211
- - lib/ole_qa_framework/COMPATIBILITY.rb
212
- - lib/ole_qa_framework/VERSION.rb
213
- - lib/docstore/docstore.rb
214
- - lib/common/line_object.rb
215
- - lib/common/data_object.rb
216
- - lib/common/subline_object.rb
217
- - lib/common/page.rb
218
- - lib/common/common_object.rb
219
- - lib/module/qa_data_helpers.rb
220
- - lib/module/qa_page_helpers.rb
221
- - lib/module/qa_helpers.rb
222
- - lib/olels/objects/holdings_note.rb
223
- - lib/olels/objects/data_line.rb
224
- - lib/olels/objects/item_note.rb
225
- - lib/olels/objects/ownership_extent_line.rb
226
- - lib/olels/objects/access_info_line.rb
227
- - lib/olels/objects/editor_note.rb
228
- - lib/olels/subobjects/ownership_note.rb
229
- - lib/olels/common/line_object.rb
172
+ - lib/olefs/subobjects/processing_line.rb
173
+ - lib/olefs/subobjects/receipt_notes_line.rb
230
174
  - lib/olels/common/e_doc.rb
231
175
  - lib/olels/common/editor.rb
176
+ - lib/olels/common/line_object.rb
232
177
  - lib/olels/common/lookup.rb
178
+ - lib/olels/objects/access_info_line.rb
179
+ - lib/olels/objects/data_line.rb
180
+ - lib/olels/objects/editor_note.rb
181
+ - lib/olels/objects/holdings_note.rb
182
+ - lib/olels/objects/item_note.rb
183
+ - lib/olels/objects/ownership_extent_line.rb
184
+ - lib/olels/pages/bib_editor.rb
233
185
  - lib/olels/pages/describe_workbench.rb
234
- - lib/olels/pages/main_menu.rb
186
+ - lib/olels/pages/instance_editor.rb
187
+ - lib/olels/pages/item_editor.rb
235
188
  - lib/olels/pages/loan.rb
189
+ - lib/olels/pages/main_menu.rb
236
190
  - lib/olels/pages/patron_lookup.rb
237
- - lib/olels/pages/item_editor.rb
238
- - lib/olels/pages/bib_editor.rb
239
- - lib/olels/pages/instance_editor.rb
240
191
  - lib/olels/pages/return.rb
241
- - CHANGELOG.md
242
- - LICENSE.md
243
- - Gemfile.lock
192
+ - lib/olels/pages/staff_upload.rb
193
+ - lib/olels/subobjects/ownership_note.rb
194
+ - ole-qa-framework.gemspec
195
+ - spec/common/browser_spec.rb
196
+ - spec/common/data_object_spec.rb
197
+ - spec/common/line_object_spec.rb
198
+ - spec/common/page_spec.rb
199
+ - spec/common/subline_object_spec.rb
200
+ - spec/modules/qa_helpers_spec.rb
201
+ - spec/modules/qa_page_helpers_spec.rb
202
+ - spec/olefs/accounting_line_spec.rb
203
+ - spec/olefs/building_lookup_spec.rb
204
+ - spec/olefs/copies_line_spec.rb
205
+ - spec/olefs/edocs_spec.rb
206
+ - spec/olefs/exception_notes_line_spec.rb
207
+ - spec/olefs/invoice_notes_line_spec.rb
208
+ - spec/olefs/line_item_spec.rb
209
+ - spec/olefs/lookup_spec.rb
210
+ - spec/olefs/main_menu_spec.rb
211
+ - spec/olefs/notes_line_spec.rb
212
+ - spec/olefs/patron_lookup_spec.rb
213
+ - spec/olefs/payment_request_spec.rb
214
+ - spec/olefs/preq_creation_spec.rb
215
+ - spec/olefs/preq_line_item_spec.rb
216
+ - spec/olefs/processing_line_spec.rb
217
+ - spec/olefs/purap_document_spec.rb
218
+ - spec/olefs/purchase_order_spec.rb
219
+ - spec/olefs/receipt_notes_line_spec.rb
220
+ - spec/olefs/receive_spec.rb
221
+ - spec/olefs/receiving_line_spec.rb
222
+ - spec/olefs/requisition_spec.rb
223
+ - spec/olefs/vendor_lookup_spec.rb
224
+ - spec/olels/access_info_line_spec.rb
225
+ - spec/olels/bib_editor_spec.rb
226
+ - spec/olels/data_line_spec.rb
227
+ - spec/olels/describe_workbench_spec.rb
228
+ - spec/olels/editor_spec.rb
229
+ - spec/olels/edocs_spec.rb
230
+ - spec/olels/holdings_note_spec_spec.rb
231
+ - spec/olels/instance_editor_spec.rb
232
+ - spec/olels/item_editor_spec.rb
233
+ - spec/olels/item_note_spec.rb
234
+ - spec/olels/loan_spec.rb
235
+ - spec/olels/lookup_spec.rb
236
+ - spec/olels/main_menu_spec.rb
237
+ - spec/olels/ownership_extent_line_spec.rb
238
+ - spec/olels/ownership_note_spec.rb
239
+ - spec/olels/return_spec.rb
240
+ - spec/olels/staff_upload_spec.rb
241
+ - spec/spec_helper.rb
242
+ - spec/workflows/purap_spec.rb
244
243
  homepage: http://www.github.com/jkwaldrip/ole-qa-framework/
245
244
  licenses:
246
245
  - ECLv2
@@ -267,51 +266,52 @@ signing_key:
267
266
  specification_version: 3
268
267
  summary: Kuali Open Library Environment
269
268
  test_files:
270
- - spec/olefs/purchase_order_spec.rb
269
+ - spec/common/browser_spec.rb
270
+ - spec/common/data_object_spec.rb
271
+ - spec/common/line_object_spec.rb
272
+ - spec/common/page_spec.rb
273
+ - spec/common/subline_object_spec.rb
274
+ - spec/modules/qa_helpers_spec.rb
275
+ - spec/modules/qa_page_helpers_spec.rb
276
+ - spec/olefs/accounting_line_spec.rb
277
+ - spec/olefs/building_lookup_spec.rb
278
+ - spec/olefs/copies_line_spec.rb
279
+ - spec/olefs/edocs_spec.rb
280
+ - spec/olefs/exception_notes_line_spec.rb
281
+ - spec/olefs/invoice_notes_line_spec.rb
282
+ - spec/olefs/line_item_spec.rb
283
+ - spec/olefs/lookup_spec.rb
284
+ - spec/olefs/main_menu_spec.rb
285
+ - spec/olefs/notes_line_spec.rb
286
+ - spec/olefs/patron_lookup_spec.rb
271
287
  - spec/olefs/payment_request_spec.rb
272
288
  - spec/olefs/preq_creation_spec.rb
273
- - spec/olefs/patron_lookup_spec.rb
274
- - spec/olefs/line_item_spec.rb
275
- - spec/olefs/receiving_line_spec.rb
276
- - spec/olefs/copies_line_spec.rb
277
- - spec/olefs/purap_document_spec.rb
278
289
  - spec/olefs/preq_line_item_spec.rb
279
- - spec/olefs/lookup_spec.rb
280
290
  - spec/olefs/processing_line_spec.rb
281
- - spec/olefs/exception_notes_line_spec.rb
282
- - spec/olefs/invoice_notes_line_spec.rb
291
+ - spec/olefs/purap_document_spec.rb
292
+ - spec/olefs/purchase_order_spec.rb
283
293
  - spec/olefs/receipt_notes_line_spec.rb
284
- - spec/olefs/edocs_spec.rb
285
- - spec/olefs/notes_line_spec.rb
286
- - spec/olefs/vendor_lookup_spec.rb
287
- - spec/olefs/main_menu_spec.rb
288
294
  - spec/olefs/receive_spec.rb
295
+ - spec/olefs/receiving_line_spec.rb
289
296
  - spec/olefs/requisition_spec.rb
290
- - spec/olefs/building_lookup_spec.rb
291
- - spec/olefs/accounting_line_spec.rb
292
- - spec/modules/qa_helpers_spec.rb
293
- - spec/modules/qa_page_helpers_spec.rb
294
- - spec/workflows/purap_spec.rb
295
- - spec/common/subline_object_spec.rb
296
- - spec/common/browser_spec.rb
297
- - spec/common/data_object_spec.rb
298
- - spec/common/line_object_spec.rb
299
- - spec/common/page_spec.rb
300
- - spec/olels/bib_editor_spec.rb
301
- - spec/olels/item_editor_spec.rb
302
- - spec/olels/loan_spec.rb
303
- - spec/olels/item_note_spec.rb
304
- - spec/olels/describe_workbench_spec.rb
297
+ - spec/olefs/vendor_lookup_spec.rb
305
298
  - spec/olels/access_info_line_spec.rb
299
+ - spec/olels/bib_editor_spec.rb
306
300
  - spec/olels/data_line_spec.rb
307
- - spec/olels/return_spec.rb
301
+ - spec/olels/describe_workbench_spec.rb
308
302
  - spec/olels/editor_spec.rb
309
- - spec/olels/lookup_spec.rb
310
- - spec/olels/ownership_extent_line_spec.rb
311
303
  - spec/olels/edocs_spec.rb
304
+ - spec/olels/holdings_note_spec_spec.rb
305
+ - spec/olels/instance_editor_spec.rb
306
+ - spec/olels/item_editor_spec.rb
307
+ - spec/olels/item_note_spec.rb
308
+ - spec/olels/loan_spec.rb
309
+ - spec/olels/lookup_spec.rb
312
310
  - spec/olels/main_menu_spec.rb
311
+ - spec/olels/ownership_extent_line_spec.rb
313
312
  - spec/olels/ownership_note_spec.rb
314
- - spec/olels/instance_editor_spec.rb
315
- - spec/olels/holdings_note_spec_spec.rb
313
+ - spec/olels/return_spec.rb
314
+ - spec/olels/staff_upload_spec.rb
316
315
  - spec/spec_helper.rb
316
+ - spec/workflows/purap_spec.rb
317
317
  has_rdoc:
data/Gemfile.lock DELETED
@@ -1,45 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- ole-qa-framework (2.1.2)
5
- headless
6
- rspec
7
- watir-webdriver
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- childprocess (0.3.9)
13
- ffi (~> 1.0, >= 1.0.11)
14
- diff-lcs (1.2.4)
15
- ffi (1.9.0)
16
- headless (1.0.1)
17
- multi_json (1.7.7)
18
- rake (10.1.0)
19
- rspec (2.13.0)
20
- rspec-core (~> 2.13.0)
21
- rspec-expectations (~> 2.13.0)
22
- rspec-mocks (~> 2.13.0)
23
- rspec-core (2.13.1)
24
- rspec-expectations (2.13.0)
25
- diff-lcs (>= 1.1.3, < 2.0)
26
- rspec-mocks (2.13.1)
27
- rubyzip (0.9.9)
28
- selenium-webdriver (2.33.0)
29
- childprocess (>= 0.2.5)
30
- multi_json (~> 1.0)
31
- rubyzip
32
- websocket (~> 1.0.4)
33
- watir-webdriver (0.6.4)
34
- selenium-webdriver (>= 2.18.0)
35
- websocket (1.0.7)
36
- yard (0.8.6.2)
37
-
38
- PLATFORMS
39
- ruby
40
-
41
- DEPENDENCIES
42
- bundler (~> 1.3)
43
- ole-qa-framework!
44
- rake
45
- yard
Binary file
Binary file
Binary file