ds-gui-automation 0.1.32 → 0.1.33
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.
data/lib/ds/version.rb
CHANGED
@@ -24,6 +24,8 @@ module Results
|
|
24
24
|
|
25
25
|
filter_by_category(category)
|
26
26
|
|
27
|
+
puts "Category ==> #{category}"
|
28
|
+
|
27
29
|
wait_for_modal
|
28
30
|
|
29
31
|
wait_for_results
|
@@ -195,7 +197,7 @@ module Results
|
|
195
197
|
|
196
198
|
category_filter = browser.div(:class, 'ux-common-filter-body ng-scope').lis.reject { | categories | !categories.span(:class, 'ng-binding').text.eql?(category)}
|
197
199
|
|
198
|
-
category_filter.first.click ## TODO agregar raise si el size de filtros es > 1
|
200
|
+
category_filter.first.span(:class, 'ux-common-filter-total ng-binding').click ## TODO agregar raise si el size de filtros es > 1
|
199
201
|
|
200
202
|
wait_for_modal
|
201
203
|
|