ole-qa-framework 3.18.0 → 3.18.1
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/lib/ole_qa_framework/VERSION.rb +1 -1
- data/lib/olels/pages/batch_import_profile.rb +39 -2
- 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: 3bd0402c805ad4482a2a78c8306f6e4e80c40cc0
|
4
|
+
data.tar.gz: 5199cd5705c92e9bada758463a00587b55d3d3eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05e5467e079b699cda15cf9638625615713e4514d2ce98c4b34544b85a5eacba7c1140bb35905b63ace0ad3eb4716ad492838f9850b71708fd8348b2898fa31b
|
7
|
+
data.tar.gz: 483ba3ec76d0602324d98f34287c5b18fca00f5b62a1806c35eebf7c39943fb78c414c54e602b532c502b7459bdfe9bd64b74596aba1cf9533c21fae48dbda2e
|
@@ -131,9 +131,46 @@ module OLE_QA::Framework::OLELS
|
|
131
131
|
# - - - Process bib
|
132
132
|
element(:bib_discard_matched) {b.radio(:id => 'matchingAddOverlaySection-bibMatched-discardOrUpdate_control_0')}
|
133
133
|
element(:bib_overlay_matched) {b.radio(:id => 'matchingAddOverlaySection-bibMatched-discardOrUpdate_control_1')}
|
134
|
-
|
135
134
|
# - - - - Overlay Bib Status
|
136
|
-
|
135
|
+
element(:bib_overlay_status_selector) {b.select_list(:id => 'bibAddOverlaySectionBibStatus-batchProcessBibStatus_add_control')}
|
136
|
+
element(:bib_overlay_status_add_button) {b.button(:id => 'bibAddOverlaySection-bibStatus_add')}
|
137
|
+
# Process Holdings
|
138
|
+
element(:match_holdings_toggle) {b.a(:id => 'OLEBatchProcessProfileBo-MaintenanceView-holdingsAndItemProcessOverlaySection_toggle')}
|
139
|
+
element(:match_holdings_toggled?) {b.div(:id => 'OLEBatchProcessProfileBo-MaintenanceView-holdingsAndItemProcessOverlaySection_disclosureContent').present?}
|
140
|
+
# - Do not perform matching
|
141
|
+
element(:holdings_no_match) {b.radio(:id => 'matchingAddOverlaySection-notPerformHoldingMatched_control_0')}
|
142
|
+
element(:holdings_discard_all) {b.radio(:id => 'matchingAddOverlaySection-notPerformHoldingMatched-processHoldingAndItem_control_0')}
|
143
|
+
element(:holdings_drop_and_add) {b.radio(:id => 'matchingAddOverlaySection-notPerformHoldingMatched-processHoldingAndItem_control_1')}
|
144
|
+
element(:holdings_keep_all) {b.radio(:id => 'matchingAddOverlaySection-notPerformHoldingMatched-processHoldingAndItem_control_2')}
|
145
|
+
# - Perform matching
|
146
|
+
element(:holdings_do_match) {b.radio(:id => 'matchingAddOverlaySection-performHoldingMatched_control_0')}
|
147
|
+
# - - If incoming holdings do not match
|
148
|
+
element(:holdings_discard_unmatched) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched_control_0')}
|
149
|
+
element(:holdings_add_unmatched) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-addHolding_control_0')}
|
150
|
+
element(:holdings_add_unmatched_items) {b.checkbox(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-addItem_control')}
|
151
|
+
# - - If incoming holdings do match
|
152
|
+
element(:holdings_add_matched) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-addItem_control')}
|
153
|
+
element(:holdings_add_matched_items) {b.checkbox(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-addItsItem_control')}
|
154
|
+
element(:holdings_process_matched) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingMatched_control_0')}
|
155
|
+
# - - - Process holdings matches
|
156
|
+
element(:holdings_discard_matched) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingMatched-processHolding_control_0')}
|
157
|
+
element(:holdings_overlay_matched) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingMatched-processHolding_control_1')}
|
158
|
+
# Process Items
|
159
|
+
element(:match_item_toggle) {b.a(:id => 'OLEBatchProcessProfileBo-MaintenanceView-itemProcessOverlaySection_toggle')}
|
160
|
+
element(:match_item_toggled?) {b.div(:id => 'OLEBatchProcessProfileBo-MaintenanceView-itemProcessOverlaySection_disclosureContent').present?}
|
161
|
+
# - Do not perform matching
|
162
|
+
element(:item_no_match) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-notMatchProcessItem_control_0')}
|
163
|
+
element(:item_discard_all) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-discardDeleteKeepItem_control_0')}
|
164
|
+
element(:item_drop_extant) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-discardDeleteKeepItem_control_1')}
|
165
|
+
element(:item_keep_all) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingNotMatched-discardDeleteKeepItem_control_2')}
|
166
|
+
# - Perform matching
|
167
|
+
element(:item_do_match) {b.radio(:id => 'matchingAddOverlaySection-incomingHoldingMatched-matchProcessItem_control_0')}
|
168
|
+
# - - If incoming items do not match
|
169
|
+
element(:item_drop_unmatched) {b.radio(:id => 'matchingAddOverlaySection-incomingItemNotMatched-ProcessItem_control_0')}
|
170
|
+
element(:item_add_unmatched) {b.radio(:id => 'matchingAddOverlaySection-incomingItemNotMatched-ProcessItem_control_1')}
|
171
|
+
# - - If incoming items do match
|
172
|
+
element(:item_add_matched) {b.radio(:id => 'matchingAddOverlaySection-incomingItemMatched-ProcessItem_control_0')}
|
173
|
+
element(:item_overlay_matched) {b.radio(:id => 'matchingAddOverlaySection-incomingItemMatched-ProcessItem_control_1')}
|
137
174
|
end
|
138
175
|
|
139
176
|
def wait_for_elements
|
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.18.
|
4
|
+
version: 3.18.1
|
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-
|
11
|
+
date: 2014-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|