ole-qa-framework 3.13.1 → 3.13.2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef01a30855c9d310ea6ea6fe446f6b02f9946805
|
4
|
+
data.tar.gz: 4d857ea11e44cb996cc7f62ea5fb86d4670cca46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03e4019765017ef7dc2ec1e938ca4478790987448c88be387c03deb581a735b2403db2357292b3f319e215353f74cb9b00e066a188730ee2f442a7119c72c801
|
7
|
+
data.tar.gz: 9b7e21673266255c4bec6001c2255d1ee96c90ce2cf7ed64e149a11cbc7c49f3ed22ba205d1fd792d939d433c5aa2a9b5ed5a61ade1f751316725a9cd4f33554
|
data/CHANGELOG.md
CHANGED
@@ -17,31 +17,13 @@ module OLE_QA::Framework::OLELS
|
|
17
17
|
class Workbench_Line < OLE_QA::Framework::Line_Object
|
18
18
|
def set_elements
|
19
19
|
super
|
20
|
-
element(:search_field) {(
|
21
|
-
id_str = 'SearchConditions_SearchText_id_add_control' :
|
22
|
-
id_str = "SearchConditions_SearchText_id_line#{line_id - 1}_control"
|
23
|
-
b.text_field(:id => id_str)}
|
20
|
+
element(:search_field) {b.text_field(:id => "SearchConditions_SearchText_id_line#{line_id}_control")}
|
24
21
|
# @note Options for this selector are 'AND', 'OR', and 'phrase'.
|
25
|
-
element(:search_scope_selector) {(
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
element(:
|
30
|
-
id_str = 'SearchConditions_DocField_id_add_control' :
|
31
|
-
id_str = "SearchConditions_DocField_id_line#{line_id - 1}_control"
|
32
|
-
b.select_list(:id => id_str)}
|
33
|
-
element(:join_and) {(line_id == 0) ?
|
34
|
-
id_str = 'SearchConditions_SearchScope_id_add_control_0' :
|
35
|
-
id_str = "SearchConditions_SearchScope_id_line#{line_id - 1}_control_0"
|
36
|
-
b.radio(:id => id_str)}
|
37
|
-
element(:join_or) {(line_id == 0) ?
|
38
|
-
id_str = 'SearchConditions_SearchScope_id_add_control_1' :
|
39
|
-
id_str = "SearchConditions_SearchScope_id_line#{line_id - 1}_control_1"
|
40
|
-
b.radio(:id => id_str)}
|
41
|
-
element(:join_not) {(line_id == 0) ?
|
42
|
-
id_str = 'SearchConditions_SearchScope_id_add_control_2' :
|
43
|
-
id_str = "SearchConditions_SearchScope_id_line#{line_id - 1}_control_2"
|
44
|
-
b.radio(:id => id_str)}
|
22
|
+
element(:search_scope_selector) {b.select_list(:id => "SearchConditions_Operator_id_line#{line_id}_control")}
|
23
|
+
element(:field_selector) {b.select_list(:id => "SearchConditions_DocField_id_line#{line_id}_control")}
|
24
|
+
element(:join_and) {b.radio(:id => "SearchConditions_SearchScope_id_line#{line_id}_control_0")}
|
25
|
+
element(:join_or) {b.radio(:id => "SearchConditions_SearchScope_id_line#{line_id}_control_1")}
|
26
|
+
element(:join_not) {b.radio(:id => "SearchConditions_SearchScope_id_line#{line_id}_control_2")}
|
45
27
|
element(:add_button) {b.button(:id => "addLineField-Add_line#{line_id}")}
|
46
28
|
element(:delete_button) {b.button(:id => "deleteLineField-Delete_line#{line_id}")}
|
47
29
|
end
|
@@ -28,6 +28,8 @@ module OLE_QA::Framework::OLELS
|
|
28
28
|
element(:search_button) {b.button(:id => 'SearchButton')}
|
29
29
|
element(:clear_button) {b.button(:id => 'ClearButton')}
|
30
30
|
element(:new_search_button) {b.button(:id => 'StartSearchButton')}
|
31
|
+
element(:error_message) {b.li(:class => 'uif-errorMessageItem')}
|
32
|
+
element(:export_xml_button) {b.button(:id => 'exportToXml')}
|
31
33
|
element(:next) {b.a(:text => /[Nn]ext/)}
|
32
34
|
element(:previous) {b.a(:text => /[Pp]revious/)}
|
33
35
|
end
|