testcentricity_web 0.4.6 → 0.4.7
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: f4d929967ea61dff2721956f8ac33773f8d8a2b4
|
|
4
|
+
data.tar.gz: ccd83c347bd9badd980939fc8560ec44d5f71ef5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc39e6d5e6c0dc51b9061501b546c075994602e993e62c3ea4f9d9717c46f32f99bf6ce2f4b35c4a7ec6e7959983516e19c249dc03252fac4a093bc08a319dd3
|
|
7
|
+
data.tar.gz: 40d2f7b03ed9b42670ad0d2e53f308de2079d3c453f1e440561dca07993248ce74f20b3c891e28abbd3de2041a3249406d251a6278418df5f1ad14cbf2096c8d
|
|
@@ -46,11 +46,11 @@ module TestCentricity
|
|
|
46
46
|
raise "Column #{column} exceeds number of columns (#{column_count}) in table #{@locator}" if column > column_count
|
|
47
47
|
set_table_cell_locator(row, column)
|
|
48
48
|
saved_locator = @alt_locator
|
|
49
|
-
set_alt_locator("#{@alt_locator}
|
|
49
|
+
set_alt_locator("#{@alt_locator}/div/div[@class='ui-icon ui-icon-triangle-1-s tree-minus treeclick']")
|
|
50
50
|
if exists?
|
|
51
51
|
expanded = true
|
|
52
52
|
else
|
|
53
|
-
set_alt_locator("#{saved_locator}
|
|
53
|
+
set_alt_locator("#{saved_locator}/div/div[@class='ui-icon ui-icon-triangle-1-e tree-plus treeclick']")
|
|
54
54
|
if exists?
|
|
55
55
|
expanded = false
|
|
56
56
|
else
|
|
@@ -64,7 +64,7 @@ module TestCentricity
|
|
|
64
64
|
def expand_table_row(row, column)
|
|
65
65
|
unless is_table_row_expanded?(row, column)
|
|
66
66
|
set_table_cell_locator(row, column)
|
|
67
|
-
set_alt_locator("#{@alt_locator}
|
|
67
|
+
set_alt_locator("#{@alt_locator}/div/div[@class='ui-icon ui-icon-triangle-1-e tree-plus treeclick']")
|
|
68
68
|
click if exists?
|
|
69
69
|
clear_alt_locator
|
|
70
70
|
end
|
|
@@ -73,7 +73,7 @@ module TestCentricity
|
|
|
73
73
|
def collapse_table_row(row, column)
|
|
74
74
|
if is_table_row_expanded?(row, column)
|
|
75
75
|
set_table_cell_locator(row, column)
|
|
76
|
-
set_alt_locator("#{@alt_locator}
|
|
76
|
+
set_alt_locator("#{@alt_locator}/div/div[@class='ui-icon ui-icon-triangle-1-s tree-minus treeclick']")
|
|
77
77
|
click if exists?
|
|
78
78
|
clear_alt_locator
|
|
79
79
|
end
|