flights_gui_tests 2.3.17 → 2.3.18
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/results/basefare_steps.rb +1 -5
- data/features/step_definitions/results/results_steps.rb +1 -0
- data/features/support/pages/thanks/thanks_page/new_thanks_page.rb +1 -1
- data/features/support/pages/thanks/thanks_page/old_thanks_page.rb +1 -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: 7d186eb601c0b26d7a38f0c8263ac80bf44c15ec
|
|
4
|
+
data.tar.gz: 6ea7011b183e124f463253ec53132c128fc08ecd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54971079d42379be9387f4e43938dd3966abc98db8cd7788767ad35ad75e2b3b8ac0867ec126aa2e04493c4f5c268edd7cb6b1f3812c25a1147bdca3926d4812
|
|
7
|
+
data.tar.gz: f9ac1bd10b532c86e1015cee5b94b8b1bae83cd5a47a00b60db5cb86ea23a52aff36a80334d4a1b9acff4bcd4ec698d64c5786a2838ab5dab8f6a622804b5cee
|
|
@@ -21,11 +21,7 @@ Entonces(/^(?:verifico|valido) las ociones de ordenamiento$/) do
|
|
|
21
21
|
end
|
|
22
22
|
options.should include?('FARE_ASCENDING')
|
|
23
23
|
options.should include?('STOPSCOUNT_ASCENDING')
|
|
24
|
-
|
|
25
|
-
options.should include?('TOTAL_FARE_YIELD_ASCENDING')
|
|
26
|
-
else
|
|
27
|
-
options.should include?('TOTALFARE_ASCENDING')
|
|
28
|
-
end
|
|
24
|
+
options.should include?('TOTALFARE_ASCENDING')
|
|
29
25
|
options.should include?('DURATION_ASCENDING')
|
|
30
26
|
options.should include?('PERSONAL_ASCENDING')
|
|
31
27
|
options.should_not include?('FLIGHTCLASS_ASCENDING')
|
|
@@ -95,6 +95,7 @@ Y(/^cierro popups$/)do
|
|
|
95
95
|
@page.execute_script("javascript:void($('.flights-message-close').click())")
|
|
96
96
|
@page.execute_script("javascript:void($('.popup-close-button').click())")
|
|
97
97
|
@page.execute_script("javascript:void($('.nibbler-common-overlay-close').click())")
|
|
98
|
+
@page.execute_script("javascript:void($('.nibbler-common-overlay-close').click())")
|
|
98
99
|
end
|
|
99
100
|
|
|
100
101
|
Y(/^verifico si muestra el popup de redireccion a internacional$/) do
|
|
@@ -12,7 +12,7 @@ module Thanks
|
|
|
12
12
|
div(:desglose_gracias,:class=>"boxes")
|
|
13
13
|
div(:popup_asistencia_al_viajero,:id=>"insurance-recommendation-popup")
|
|
14
14
|
div(:overlay_asistencia_al_viajero,:id=>"insurance-recommendation-popup-overlay")
|
|
15
|
-
div(:cerrar_popup_asistencia_al_viajero,:css=>"#insurance-recommendation-popup .
|
|
15
|
+
div(:cerrar_popup_asistencia_al_viajero,:css=>"#insurance-recommendation-popup .message-close")
|
|
16
16
|
div(:popup_desglose_detalles_gracias,:class=>"flights-popup popup-detail")
|
|
17
17
|
div(:link_mi_despegar,:id=>"self-service")
|
|
18
18
|
div(:mensaje_alerta,:class=>"ux-common-message ux-common-message-warning ")
|
|
@@ -12,7 +12,7 @@ module Thanks
|
|
|
12
12
|
div(:popup_desglose_gracias,:id=>"popup-booking-details")
|
|
13
13
|
div(:popup_asistencia_al_viajero,:id=>"insurance-recommendation-popup")
|
|
14
14
|
div(:overlay_asistencia_al_viajero,:id=>"insurance-recommendation-popup-overlay")
|
|
15
|
-
div(:cerrar_popup_asistencia_al_viajero,:css=>"#insurance-recommendation-popup .
|
|
15
|
+
div(:cerrar_popup_asistencia_al_viajero,:css=>"#insurance-recommendation-popup .message-close")
|
|
16
16
|
div(:popup_desglose_detalles_gracias,:class=>"flights-popup popup-detail")
|
|
17
17
|
div(:link_mi_despegar,:class=>"ux-shared-checkout-thanks-ticket-cont")
|
|
18
18
|
div(:mensaje_alerta,:class=>"ux-common-message ux-common-message-warning ")
|
data/features/support/version.rb
CHANGED