flights_gui_tests 2.4.81 → 2.4.82
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: 7410da476743bc23557f5ed61ed15fa738a07124
|
4
|
+
data.tar.gz: a54428553c6f58df2eda387f4c9671489d0702a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4604e876cfbdd6aff81a967667b7a35332d7548c405b271561e19a74d62db7a56d1ce50ba1b664c7fcd571e48aacab8d822cc9f76605514b48d343aa8288622
|
7
|
+
data.tar.gz: c34c5caf97bc7d1fbd755c8d2c159cb7ce903e9f8d8fca0015b332e7e1dba6399ed48c1c4d616b1d90b2383e03c49b2dc251ded8817aebc8db1a4b4e2bc416a5
|
@@ -17,10 +17,7 @@ Y(/^verifico que se muestre el popup de cambio de vuelo$/) do
|
|
17
17
|
end
|
18
18
|
|
19
19
|
Entonces(/^elijo un itinerario del popup de cambio de vuelo$/) do
|
20
|
-
status = $HENRY_PARAMS['angular']
|
21
|
-
$HENRY_PARAMS['angular'] = nil
|
22
20
|
@popup_no_disponibilidad_page.sumar_aparicion
|
23
21
|
@popup_no_disponibilidad_page.cargar_itinerarios
|
24
22
|
@itinerario_checkout = @popup_no_disponibilidad_page.elegir_itinerario(0)
|
25
|
-
$HENRY_PARAMS['angular'] = status
|
26
23
|
end
|
@@ -12,6 +12,8 @@ module Checkout
|
|
12
12
|
div(:itinerario_nuevo,:class=>"pick-new-flight-container")
|
13
13
|
|
14
14
|
def cargar_itinerarios
|
15
|
+
status = $HENRY_PARAMS['angular']
|
16
|
+
$HENRY_PARAMS['angular'] = nil
|
15
17
|
@datos_de_itinerarios = []
|
16
18
|
itinerarios_elements.each do |itinerario|
|
17
19
|
if itinerario_nuevo_element.present?
|
@@ -20,6 +22,7 @@ module Checkout
|
|
20
22
|
@datos_de_itinerarios << RenderCluster.new(tipo_de_busqueda,Hpricot.parse(itinerario.html))
|
21
23
|
end
|
22
24
|
end
|
25
|
+
$HENRY_PARAMS['angular'] = status
|
23
26
|
end
|
24
27
|
|
25
28
|
def setear_clusters(index)
|
data/features/support/version.rb
CHANGED