ole-qa-framework 3.17.2 → 3.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9e532d8dbbfd87e642c6da44caad038390b3c8a
4
- data.tar.gz: d10f309864b8062383829ee1a3de884d037f7bd7
3
+ metadata.gz: da7aa905e86ec04ba3378a00a932dbe9cb04fce0
4
+ data.tar.gz: 1a9b8adb14063e4aafd5151f4cf17d1fe35c2fe8
5
5
  SHA512:
6
- metadata.gz: 2346e086f5a18e3eb32b62e9c0b26729349e538cc9a189a6ff6ca4aabad874641177ac837b76d60672068b6ad9a8455ed50e7a11ce9f3ffe6a1c0cece26d9ef0
7
- data.tar.gz: 50b61bec8d9ba04c9d1217299707813fc88ea6f70db748e83fc2b38ce388bf68b2e628fd54bb16c15fd9d725997a580ff9ac417d50cb40da772ecf75f7224821
6
+ metadata.gz: bc7bde9217ad188e4e8f9c4efe8861166bde604fc79271bc4377c3064a515ab0a823bac64aed1aca96537dd02d82ee37c058a86223e56af2e5219a411742fc14
7
+ data.tar.gz: a37e72868821c87f7b97f67409c0b7c560ab74ff2761b7a626d6a5d7ccdd14518bcee0c6dc685c12de6d3327b59b7f3aa766921e67b9c8a246d07966876d52b5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### v.3.18.0 - 2014/09/23
2
+
3
+ * Added Batch Order Profile page.
4
+
1
5
  ### v3.17.2 - 2014/09/23
2
6
 
3
7
  * Fixed batch import functionality.
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '3.17.2'
18
+ VERSION = '3.18.0'
19
19
  end
20
20
  end
@@ -43,4 +43,4 @@ module OLE_QA::Framework::OLEFS
43
43
  function(:text_in_results?) {|which| b.td(:xpath => "//table[@id='row']/descendant::td[contains(text(),'#{which}')]").present?}
44
44
  end
45
45
  end
46
- end
46
+ end
@@ -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.17.2
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