ole-qa-framework 3.8.2 → 3.8.3
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/CHANGELOG.md +10 -0
- data/lib/ole_qa_framework/VERSION.rb +1 -1
- data/lib/olefs/pages/load_summary_lookup.rb +2 -0
- data/lib/olels/pages/batch_process.rb +3 -0
- data/lib/olels/pages/batch_profile_lookup.rb +2 -2
- data/lib/olels/pages/bib_editor.rb +2 -2
- data/lib/olels/pages/staff_upload.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5210cfac49810baf93c3c45b2a9fdf8786b80e62
|
4
|
+
data.tar.gz: 396d6c91779c7d3fbabbb63c51be9ae0c70180ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00b6b8a9535515129282c697d5e45b9705828755d864f16629680fc3b70ef7dc08be8d921634033d249788f8355539fb8e76a9de2dc00d2a04a772b43a4e2332
|
7
|
+
data.tar.gz: bcdffe518533e477f0f9e1bec0619af335fe59eaf333b411fe560cb04c9faab3ab1109e3e7d0c433051a066c130f30b9cad585e119012d1fad90b373cdc79aa3
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
### v3.8.3 - 2014/01/29
|
2
|
+
|
3
|
+
* Batch Profile Lookup
|
4
|
+
* Updated return_by_text & edit_by_text elements.
|
5
|
+
* Batch Process
|
6
|
+
* Added marc_file_field & edi_file_field elements.
|
7
|
+
* Added message element
|
8
|
+
* Load Summary Lookup
|
9
|
+
* Added text_in_results? function.
|
10
|
+
|
1
11
|
### v3.8.2 - 2014/01/20
|
2
12
|
|
3
13
|
* Batch Profile
|
@@ -37,6 +37,8 @@ module OLE_QA::Framework::OLEFS
|
|
37
37
|
super
|
38
38
|
# Return the link to a document by any text in the row.
|
39
39
|
function(:doc_link_by_text) {|which| b.td(:xpath => "//table[@id='row']/descendant::td[contains(text(),'#{which}')]").parent.td(:index => 0).a}
|
40
|
+
# Check whether the given text exists in the search results.
|
41
|
+
function(:text_in_results?) {|which| b.td(:xpath => "//table[@id='row']/descendant::td[contains(text(),'#{which}')]").present?}
|
40
42
|
end
|
41
43
|
end
|
42
44
|
end
|
@@ -34,6 +34,9 @@ module OLE_QA::Framework::OLELS
|
|
34
34
|
element(:output_file_field) {b.text_field(:id => 'outputFileField_control')}
|
35
35
|
element(:run_button) {b.button(:id => 'runNowButton')}
|
36
36
|
element(:schedule_button) {b.button(:id => 'scheduleButton')}
|
37
|
+
element(:marc_file_field) {b.input(:id => 'marcFileField_control').to_subtype}
|
38
|
+
element(:edi_file_field) {b.input(:id => 'ediFileField_control').to_subtype}
|
39
|
+
element(:message) {b.li(:class => 'uif-infoMessageItem')}
|
37
40
|
end
|
38
41
|
|
39
42
|
def wait_for_elements
|
@@ -45,12 +45,12 @@ module OLE_QA::Framework::OLELS
|
|
45
45
|
# Check whether the given text exists within the search results displayed.
|
46
46
|
function(:text_in_results) {|text| b.td(:xpath => "//table/tbody/tr/td[div/span[contains(text(),'#{text}')]]")}
|
47
47
|
# Return the 'Edit' link for a row containing the given text.
|
48
|
-
function(:edit_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td[1]/div/fieldset/div/a[contains(text(),'edit')]")}
|
48
|
+
function(:edit_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td[1]/div/fieldset/div/div/a[contains(text(),'edit')]")}
|
49
49
|
# Return the Batch Process Profile ID link for a row containing the given text.
|
50
50
|
function(:id_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td[2]/div/span/a")}
|
51
51
|
# Return the value of the Batch Process Profile containing the given text.
|
52
52
|
# @note Replaces :edit_by_text when the lookup is embedded on a batch profile editing screen.
|
53
|
-
function(:return_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td/div/a[contains(text(),'return value')]")}
|
53
|
+
function(:return_by_text) {|text| b.a(:xpath => "//table/tbody/tr[td/div/span[contains(text(),'#{text}')]]/td/div/fieldset/div/div/a[contains(text(),'return value')]")}
|
54
54
|
end
|
55
55
|
end
|
56
56
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# Copyright 2005-2013 The Kuali Foundation
|
2
|
-
|
2
|
+
#
|
3
3
|
# Licensed under the Educational Community License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
5
5
|
# You may obtain a copy of the License at:
|
@@ -73,4 +73,4 @@ module OLE_QA::Framework::OLELS
|
|
73
73
|
set_line(:data_line, OLE_QA::Framework::OLELS::Data_Line)
|
74
74
|
end
|
75
75
|
end
|
76
|
-
end
|
76
|
+
end
|
@@ -14,6 +14,8 @@
|
|
14
14
|
|
15
15
|
module OLE_QA::Framework::OLELS
|
16
16
|
# The OLE Library System Staff Upload page, accessible from the OLE Financial System main menu.
|
17
|
+
# @note THIS PAGE IS NO LONGER ACTIVE AS OF OLE 1.5 M1 r16954.
|
18
|
+
# Use Batch Process for EOCR uploads instead.
|
17
19
|
class Staff_Upload < OLE_QA::Framework::Page
|
18
20
|
|
19
21
|
def initialize(ole_session)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ole-qa-framework
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.8.
|
4
|
+
version: 3.8.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jain Waldrip
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|