ole-qa-framework 3.12.3 → 3.12.4

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: f14721a8b0426c9bd2bb03c4e77af98161b4cf3c
4
- data.tar.gz: 8e42599b8df7d5c6dcd36e4f3e425947d48cf4de
3
+ metadata.gz: cb8358c3d98e14945e2db1b872f515605a798682
4
+ data.tar.gz: ef0359b44a25bd614abf3370a6bde259ad59ddb1
5
5
  SHA512:
6
- metadata.gz: f97af1441f6a3f94258683df4821c17e9c9975dd35442bde7f6e04f4065e805ff163c7d3cb2684e9e844ff50f705611cf85b3c2c104d44feeaea8612c1dd0be8
7
- data.tar.gz: 9b3e37dced782eac84715c7ecf2842b5e75656765ae685c5dab0ae82300cdf68c8ad0fc04d1bd9f786d5ac78d1f407e08ff5c98fc8814c2901568e808a88a5a4
6
+ metadata.gz: 09ebd2b34ea0a048d4f9fd46d6752a385b2c8853ad03ad93ae4974441df89836d7b5f836df51a1bed3129ff7310ff0be99a199a1941c6270596b97cf6240b86e
7
+ data.tar.gz: 223ebd11798707ff0156a9a1a4d99d4a52d634380f6593a3328207a6dc8ae0281206982ec7bc596db964689bb2fa1311d8e391cee797253f34f4cab6d7ff5956
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### v3.12.4 - 2014/03/18
2
+
3
+ * Request Page Fix
4
+ * Replaced IDs with regex patterns to match dynamically-updated element IDs in page.
5
+
1
6
  ### v3.12.3 - 2014/03/14
2
7
 
3
8
  * Request Page Fix
@@ -15,6 +15,6 @@
15
15
  module OLE_QA
16
16
  module Framework
17
17
  # The version number for this project.
18
- VERSION = '3.12.3'
18
+ VERSION = '3.12.4'
19
19
  end
20
20
  end
@@ -31,13 +31,13 @@ module OLE_QA::Framework::OLELS
31
31
  element(:document_status) {b.div(:data_label => 'Document Status').span(:class => 'uif-readOnlyContent')}
32
32
  element(:creation_timestamp) {b.div(:data_label => 'Creation Timestamp').span(:class => 'uif-readOnlyContent')}
33
33
  element(:request_details_toggle) {b.a(:id => 'OleRequestDocument-MaintenanceView-selectRequestBorrower_toggle')}
34
- element(:user_type_selector) {b.select_list(:id => 'selectRequestBorrower-MaintenanceView-requestCreators_control')}
35
- element(:user_id_field) {b.text_field(:id => 'selectRequestOperator-operatorCreateIds_control')}
36
- element(:user_name) {b.span(:id => 'selectRequestOperator-operatorCreateNames_control')}
37
- element(:request_type_selector) {b.select_list(:id => 'selectRequestBorrower-MaintenanceView-requestTypeIds_control')}
38
- element(:patron_barcode_field) {b.text_field(:id => 'selectRequestBorrower-MaintenanceView-borrowerBarcodes_control')}
39
- element(:patron_barcode_icon) {b.fieldset(:id => 'selectRequestBorrower-MaintenanceView-borrowerBarcodes_fieldset').input(:class => 'uif-actionImage')}
40
- element(:patron_name_field) {b.text_field(:id => 'selectRequestBorrower-MaintenanceView-borrowerNames_control')}
34
+ element(:user_type_selector) {b.select_list(:id => /selectRequest\w+-MaintenanceView-requestCreators_control/)}
35
+ element(:user_id_field) {b.text_field(:id => /selectRequest\w+-operatorCreateIds_control/)}
36
+ element(:user_name) {b.span(:id => /selectRequest\w+-operatorCreateNames_control/)}
37
+ element(:request_type_selector) {b.select_list(:id => /selectRequest\w+-MaintenanceView-requestTypeIds_control/)}
38
+ element(:patron_barcode_field) {b.text_field(:id => /selectRequest\w+-MaintenanceView-borrowerBarcodes_control/)}
39
+ element(:patron_barcode_icon) {b.fieldset(:id => /selectRequest\w+-MaintenanceView-borrowerBarcodes_fieldset/).input(:class => 'uif-actionImage')}
40
+ element(:patron_name_field) {b.text_field(:id => /selectRequest(\w+)?-MaintenanceView-borrowerNames_control/)}
41
41
  element(:submit_button) {b.button(:text => /[Ss]ubmit/)}
42
42
  element(:save_button) {b.button(:text => /[Ss]ave/)}
43
43
  element(:back_button) {b.button(:text => /[Bb]ack/)}
@@ -69,7 +69,7 @@ module OLE_QA::Framework::OLELS
69
69
  element(:copy_format_field) {b.text_field(:id => 'copyRequest-copyFormat_control')}
70
70
  element(:copy_pages_field) {b.text_field(:id => 'copyRequest-contentDescription_control')}
71
71
  # In-Transit
72
- element(:circulation_location_selector) {b.select_list(:id => 'inTransitReques-circulationLocationId_control')}
72
+ element(:circulation_location_selector) {b.select_list(:id => 'inTransitRequest-circulationLocationId_control')}
73
73
  element(:checkin_note_field) {b.text_field(:id => 'inTransitRequest-checkInNote_control')}
74
74
  end
75
75
 
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.12.3
4
+ version: 3.12.4
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-03-14 00:00:00.000000000 Z
11
+ date: 2014-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler