ole-qa-framework 3.6.5 → 3.6.6
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 +8 -8
- data/CHANGELOG.md +9 -0
- data/lib/ole_qa_framework/VERSION.rb +1 -1
- data/lib/olels/pages/patron.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NmFhMjc5ZDc1Yjk0ZGJlOGE5Y2EwZGY4ODVlYjQ2NTZmYWY5YTZiMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YzVhODg4Nzc5ZTg4ZDhhNDI5Yjg5YTY4NTMzNzZiNmM3NTk5YTIxYw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NGFiYjM3NDAxZDc1OGVkOWQyMzdlMDE4YzEyMTgyM2YwMWNmZjkzNmM5NjJj
|
|
10
|
+
NGUwYTE4YjIwNDc5OTljZTJiYTM5MzMzYmEwYWVmYWIyOTJiZmVlNGE3ZjRj
|
|
11
|
+
M2Y3OGMwYzU0ODY4NmUyMzcxZmY0OGFkMjMzYzA4ZWY0ZGIzMjY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDZlOTNlMDM2MDc1ZjNhOTUyNmYyMzAxOWZjNWM3Y2RjM2E2Mzc4ZDM1NDcz
|
|
14
|
+
MmZhY2NjMmQ3Yjg1ZDUxZWE0MjM1ZmU0MmQ0MzJmMTA3OTY3ZmU1OWVmZGUz
|
|
15
|
+
NThlZWRhYTJiN2IyOGU3MmY0YzA3ZWRjNWI4Mjk5NGVkYWRiMWE=
|
data/CHANGELOG.md
CHANGED
data/lib/olels/pages/patron.rb
CHANGED
|
@@ -33,6 +33,7 @@ module OLE_QA::Framework::OLELS
|
|
|
33
33
|
element(:document_initiator) {b.div(:data_label => 'Initiator Network Id')}
|
|
34
34
|
element(:document_timestamp) {b.div(:data_label => 'Creation Timestamp')}
|
|
35
35
|
element(:patron_id) {b.a(:xpath => "//th[span/label[contains(text(),'Patron Id:')]]/following-sibling::td[1]/div/span/a")}
|
|
36
|
+
element(:message) {b.li(:class => 'uif-infoMessageItem')}
|
|
36
37
|
element(:barcode_field) {b.text_field(:id => 'barcode_control')}
|
|
37
38
|
element(:borrower_type_selector) {b.select_list(:id => 'borrowerType_control')}
|
|
38
39
|
element(:source_selector) {b.select_list(:id => 'sourceType_control')}
|
|
@@ -68,6 +69,10 @@ module OLE_QA::Framework::OLELS
|
|
|
68
69
|
element(:address_toggle) {b.a(:id => 'OlePatronDocument-Address_toggle')}
|
|
69
70
|
element(:phone_toggle) {b.a(:id => 'OlePatronDocument-Phone_toggle')}
|
|
70
71
|
element(:email_toggle) {b.a(:id => 'OlePatronDocument-Email_toggle')}
|
|
72
|
+
element(:submit_button) {b.button(:id => 'oleSubmit')}
|
|
73
|
+
element(:save_button) {b.button(:id => 'usave')}
|
|
74
|
+
element(:close_button) {b.button(:id => 'oleClose')}
|
|
75
|
+
element(:update_barcode_button) {b.button(:id => 'lostBarcode_edit')}
|
|
71
76
|
end
|
|
72
77
|
|
|
73
78
|
# Define commonly used functions for patron record screen.
|