flights_gui_tests 1.5.6 → 1.5.7
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: 7f45689d02029e023c47c656f0f5d50943d473b4
|
|
4
|
+
data.tar.gz: 609368c0ae14cee092480bde789b4d24f1818177
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86a44c16ae96d0d171a615b740a61bb85fd3fe2ad6ed00a8c9dc62038f0ee989254443bcadefb0769d317861e7653c9cd1fdbfc20cb1add4daf28f8c414cc529
|
|
7
|
+
data.tar.gz: 2a480184cd1d2bb5ac311abc25c8d51a396a49a704eb932efd6d28801d9526e09898d4e7a9352a1422e23dea3d9141e2a908c2cdcf873d73338a6f37bff91fa0
|
data/features/data/sites.yml
CHANGED
|
@@ -42,7 +42,7 @@ CN:
|
|
|
42
42
|
- {code: "HKG", airports: ["HKG"], name: "Hong Kong", name_lang: {es: "Hong Kong",en: "Hong Kong", pt: "Hong Kong"}}
|
|
43
43
|
- {code: "SHA", airports: ["SHA","PVG"], name: "Shanghai", name_lang: {es: "Shanghai",en: "Shanghai", pt: "Shanghai"}}
|
|
44
44
|
IN:
|
|
45
|
-
- {code: "DEL", airports: ["DEL"], name: "Delhi", name_lang: {es: "
|
|
45
|
+
- {code: "DEL", airports: ["DEL"], name: "Delhi", name_lang: {es: "Nueva Delhi",en: "new delhi", pt: "Delhi"}}
|
|
46
46
|
US:
|
|
47
47
|
- {code: "MIA", airports: ["MIA","FLL"], name: "Miami", name_lang: {es: "Miami",en: "Miami", pt: "Miami"}}
|
|
48
48
|
- {code: "LAX", airports: ["LAX"], name: "Los Angeles", name_lang: {es: "Los Angeles",en: "Los Angeles", pt: "Los Angeles"}}
|
|
@@ -46,7 +46,7 @@ Entonces(/^recorro y (?:verifico|valido) cada itinerario$/) do
|
|
|
46
46
|
$num = 0
|
|
47
47
|
@page.itinerarios_elements.each do |itinerario|
|
|
48
48
|
_itinerario = @page.cargar_itinerario(itinerario)
|
|
49
|
-
@page.validar_millas(json,i)
|
|
49
|
+
@page.validar_millas(json,i) unless AllPages.lang=="en"
|
|
50
50
|
@page.validar_mas_detalles(json,i,_itinerario)
|
|
51
51
|
@page.validar_detalles_itinerario(i)
|
|
52
52
|
@page.validar_popup_cuotas(i)
|
|
@@ -17,7 +17,7 @@ module Results
|
|
|
17
17
|
popup_cuotas_element.when_visible(timeout=20)
|
|
18
18
|
popup = Hpricot.parse(popup_cuotas_element.html)
|
|
19
19
|
sleep(0.5)
|
|
20
|
-
popup.inner_text.strip.should_not match("los datos no estan disponibles")
|
|
20
|
+
popup.inner_text.gsub(/\n/,'').strip.should_not match("los datos no estan disponibles")
|
|
21
21
|
popup_cuotas_element.span(:class,'popup-close-button popup-close').click
|
|
22
22
|
popup_cuotas_element.when_not_visible(timeout=20)
|
|
23
23
|
else
|
data/features/support/version.rb
CHANGED