ole-qa-framework 3.17.2 → 3.18.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/CHANGELOG.md +4 -0
- data/lib/ole_qa_framework/VERSION.rb +1 -1
- data/lib/olefs/pages/load_summary_lookup.rb +1 -1
- data/lib/olels/pages/batch_order_profile.rb +34 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da7aa905e86ec04ba3378a00a932dbe9cb04fce0
|
4
|
+
data.tar.gz: 1a9b8adb14063e4aafd5151f4cf17d1fe35c2fe8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc7bde9217ad188e4e8f9c4efe8861166bde604fc79271bc4377c3064a515ab0a823bac64aed1aca96537dd02d82ee37c058a86223e56af2e5219a411742fc14
|
7
|
+
data.tar.gz: a37e72868821c87f7b97f67409c0b7c560ab74ff2761b7a626d6a5d7ccdd14518bcee0c6dc685c12de6d3327b59b7f3aa766921e67b9c8a246d07966876d52b5
|
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,34 @@
|
|
1
|
+
# Copyright 2005-2014 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
|
+
class Batch_Order_Profile < Batch_Profile
|
17
|
+
def set_elements
|
18
|
+
super
|
19
|
+
element(:marc_only) {b.checkbox(:id => 'mainSection-MaintenanceView-marcOnly_control')}
|
20
|
+
element(:marc_only?) {marc_only.when_present.checked?}
|
21
|
+
element(:bib_profile_search) {b.fieldset(:id => 'mainSection-MaintenanceView-bibImportProfileForOrderRecord_fieldset').input(:class => 'uif-actionImage')}
|
22
|
+
element(:bib_profile_field) {b.text_field(:id => 'mainSection-MaintenanceView-bibImportProfileForOrderRecord_control')}
|
23
|
+
element(:bib_profile) {bib_profile_field.when_present.value.strip}
|
24
|
+
end
|
25
|
+
|
26
|
+
def set_functions
|
27
|
+
super
|
28
|
+
end
|
29
|
+
|
30
|
+
def wait_for_elements
|
31
|
+
super
|
32
|
+
end
|
33
|
+
end
|
34
|
+
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: 3.
|
4
|
+
version: 3.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jain Waldrip
|
@@ -188,6 +188,7 @@ files:
|
|
188
188
|
- lib/olels/pages/batch_import_profile.rb
|
189
189
|
- lib/olels/pages/batch_job_details.rb
|
190
190
|
- lib/olels/pages/batch_job_report.rb
|
191
|
+
- lib/olels/pages/batch_order_profile.rb
|
191
192
|
- lib/olels/pages/batch_process.rb
|
192
193
|
- lib/olels/pages/batch_profile_lookup.rb
|
193
194
|
- lib/olels/pages/batch_type_lookup.rb
|