flights_gui_tests 2.4.18 → 2.4.19
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 +4 -4
- data/features/step_definitions/desambiguation_steps.rb +5 -1
- data/features/support/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 041c31af1f7259ad9e5325f0e0d3bda2e6b6f58e
|
|
4
|
+
data.tar.gz: 72db26ed4a06085d47b835a2996b208f86d8bb48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1178cd21bbd2f6af3ba9b6296f50be9929f2424c80febd1b9518125bf5398481d39d6f42ff50c3623da8cefde410f90d01ddaf6cad717dce921785dc615f9f37
|
|
7
|
+
data.tar.gz: 5a9ab04916e6ab85e2ea84bb74024f65b03dd11996fcdac46ba401216c9271c3297a375e6c27a5f79151fa447a7bc5124a8ff26e0292eee7e0c723708d6767ed
|
|
@@ -10,7 +10,11 @@ end
|
|
|
10
10
|
|
|
11
11
|
Cuando(/^seteo las edades de los menores$/) do
|
|
12
12
|
@page.manage_data.get_childrens.to_i.times do | j |
|
|
13
|
-
|
|
13
|
+
if @page.browser.li(:class,"ctn-select-age ctn-#{1+j}").present?
|
|
14
|
+
@page.browser.li(:class,"ctn-select-age ctn-#{1+j}").select_lists[0].select_value(["I","C"][rand(2)])
|
|
15
|
+
else
|
|
16
|
+
@page.browser.select(:class,"sbox-ui-select sbox-children sbox-children-#{1+j}-age").select_value(["I","C"][rand(2)])
|
|
17
|
+
end
|
|
14
18
|
end
|
|
15
19
|
end
|
|
16
20
|
|
data/features/support/version.rb
CHANGED