testcentricity_web 0.4.6 → 0.4.7

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: d3d60d65ffc7a6f9bf8b44163b747d94b5e0eeac
4
- data.tar.gz: 3bf55b397f58831141b5f5336ebacf4a5b26b0b0
3
+ metadata.gz: f4d929967ea61dff2721956f8ac33773f8d8a2b4
4
+ data.tar.gz: ccd83c347bd9badd980939fc8560ec44d5f71ef5
5
5
  SHA512:
6
- metadata.gz: b33f0433a672f6d1667bfe6980f4d9ab9c6ec482b280f70afae92788d86a3581c6e37bb4a38e411bf00cc52c4b37a1123117784b674cb93ac541261f217f9534
7
- data.tar.gz: accab1cc58481241345dec968de8428f52665413bad9d6eaa29f87e9de709c6b61252899fb55f061ef187bf86f8ba51e26b54783d05cb9f2aab72cedc7783a4c
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}//div[@class='ui-icon ui-icon-triangle-1-s tree-minus treeclick']")
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}//div[@class='ui-icon ui-icon-triangle-1-e tree-plus treeclick']")
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}//div[@class='ui-icon ui-icon-triangle-1-e tree-plus treeclick']")
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}//div[@class='ui-icon ui-icon-triangle-1-e tree-minus treeclick']")
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
@@ -1,3 +1,3 @@
1
1
  module TestCentricityWeb
2
- VERSION = '0.4.6'
2
+ VERSION = '0.4.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testcentricity_web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - A.J. Mrozinski