flights_gui_henry_tests 2.1.1 → 2.1.2
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 +8 -8
- data/features/step_definitions/filter/matrix_steps.rb +27 -13
- data/features/step_definitions/landing/landing_steps.rb +9 -6
- data/features/step_definitions/search/flight_gui_steps.rb +8 -4
- data/features/step_definitions/search/reviews_step.rb +1 -1
- data/features/step_definitions/search/wish_list_steps.rb +13 -10
- data/features/tests/checkout/chat.feature +4 -1
- data/features/tests/landing/landing_integration.feature +3 -3
- data/features/tests/landing/landing_positive.feature +1 -5
- data/features/tests/matrix/matrix_fare_chart.feature +1 -1
- data/features/tests/matrix/matrix_price.feature +2 -0
- data/features/tests/search/wish_list.feature +1 -1
- data/flights_gui_henry_tests.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YmExNzAzYTVmNDg1YjFhNDc0OWZlNjM4M2ZiMmZjMzg2YzQxNTA1ZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NjM3YzBlMTRjZWYzNjUwNGI4YTgyZjIxZTc3YzcwMmY4ZWZjZjllOQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjQ2MDZjNmU4ZTMzYjY4MGY2YzJlMjEzZDUwNDIwZTY4OThkOTI2MDdkZGE2
|
|
10
|
+
YmU2NDQ5OWRiMDMzYWVjZTk4NjhiYTdkMmZmODExNDM2ZjM1YTM0MjI1MTBk
|
|
11
|
+
MjhlYWRkZDgxYzgzNDdiZTM5MzIzYWZjNmJhNzQ3NjdmYzYwNTc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Yjc1MDhlNmU0NTZmOTM5NmI2N2RhMzNmNWY4Nzg0OTk2ZWZmMDU5ODUzZWFl
|
|
14
|
+
NjQ3ZDdmMWZhOWEzN2M0Nzk2YzdhMjUyYjI5YTE4YjQ0YzgwOWY3YzNlYjE5
|
|
15
|
+
YjUwMTRmOGQxNGFjMDE4YjUzOTUxOTA1NDJhNzdjMzM5ZWUyMTU=
|
|
@@ -39,7 +39,7 @@ And /^Limpio la matriz$/ do
|
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
And /^no se muestra la matriz de precios$/ do
|
|
42
|
-
BROWSER.div(:class,'flights-tab-header flights-tab-priceSuggestionMatrix ').
|
|
42
|
+
(!BROWSER.div(:class,'flights-tab-header flights-tab-priceSuggestionMatrix ').present? and !BROWSER.div(:id,'ux-common-message ux-common-message-success price-suggestion-matrix-alert').present?).should be_true
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
And /^Modifico la cookie "(.*)" con el valor "(.*)"$/ do |name,value|
|
|
@@ -52,7 +52,6 @@ And /^Realizo las busquedas para recargar la matriz$/ do
|
|
|
52
52
|
date = @search.date_to_1
|
|
53
53
|
[0,1,2,3].each do |x|
|
|
54
54
|
[0,1,2,3].each do |y|
|
|
55
|
-
puts "#{@search.date_from_1}/#{@search.date_to_1}"
|
|
56
55
|
@search.set_new_date(@search.date_from_1,@search.date_to_1+1)
|
|
57
56
|
begin
|
|
58
57
|
HTTParty.get(@search.generate_url_results_search.gsub(/results/,"data/search") + "/TOTALFARE/ASCENDING/NA/NA/NA/NA/NA?hashForData=#{Digest::MD5.hexdigest(@search.generate_url_results_search+'despegar')}",:headers => {"referer" => @search.generate_url_results_search})
|
|
@@ -63,11 +62,26 @@ And /^Realizo las busquedas para recargar la matriz$/ do
|
|
|
63
62
|
@search.set_new_date(@search.date_from_1+1,date)
|
|
64
63
|
end
|
|
65
64
|
@search.set_new_date(@search.date_from_1-3,@search.date_to_1+3)
|
|
66
|
-
puts @search.generate_url_results_search
|
|
67
65
|
BROWSER.goto(@search.generate_url_results_search)
|
|
68
66
|
end
|
|
69
67
|
|
|
70
68
|
Then /^Verifico que se muestre la matriz de precios$/ do
|
|
69
|
+
value = get_abtesting("priceSuggestionMatrixAlertType")
|
|
70
|
+
puts value
|
|
71
|
+
if value < 30
|
|
72
|
+
puts value.to_s + " 1"
|
|
73
|
+
BROWSER.div(:id,'ux-common-message ux-common-message-success price-suggestion-matrix-alert').should_not visible("cartel verde de mejor oferta en +/- 3 dias")
|
|
74
|
+
BROWSER.div(:class,'ux-common-overlay ux-common-overlay-top-center ux-common-overlay-popover popup-price-suggestion-matrix-alert').should_not visible("popup de mejor oferta en +/- 3 dias")
|
|
75
|
+
elsif BROWSER.div(:id,'ux-common-message ux-common-message-success price-suggestion-matrix-alert').present?
|
|
76
|
+
(value > 29 and value < 65).should be_true
|
|
77
|
+
BROWSER.div(:id,'price-suggestion-matrix').should visible
|
|
78
|
+
puts value.to_s + " 2"
|
|
79
|
+
elsif BROWSER.div(:class,'ux-common-overlay ux-common-overlay-top-center ux-common-overlay-popover popup-price-suggestion-matrix-alert').present?
|
|
80
|
+
(value >64).should be_true
|
|
81
|
+
BROWSER.div(:class,'ux-common-overlay ux-common-overlay-top-center ux-common-overlay-popover popup-price-suggestion-matrix-alert').click
|
|
82
|
+
sleep(2)
|
|
83
|
+
puts value.to_s + " 3"
|
|
84
|
+
end
|
|
71
85
|
if BROWSER.div(:class,'flights-tab-header flights-tab-priceSuggestionMatrix ').present?
|
|
72
86
|
BROWSER.div(:class,'flights-tab-header flights-tab-priceSuggestionMatrix ').click
|
|
73
87
|
sleep(2)
|
|
@@ -189,16 +203,16 @@ And /^Verifico que la matriz cumpla con el rango de fechas de la busqueda$/ do
|
|
|
189
203
|
today = today +1
|
|
190
204
|
end
|
|
191
205
|
months.uniq!
|
|
192
|
-
|
|
193
|
-
#
|
|
194
|
-
#
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
#
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
#
|
|
201
|
-
|
|
206
|
+
visible_months.delete(visible_months.last) if (visible_months.length!=months.length)
|
|
207
|
+
#months.sort.should equal(visible_months.sort) #verifico que se muestren todos los meses hasta la fecha de salida
|
|
208
|
+
#(doc/"div.fare-chart-main div.fare-chart-current-price div").first.attributes['data-month-index'].to_i.should equal(@search.date_from_1.month - 1) #verifico que el mes del precio mostrado sea el correcto
|
|
209
|
+
(doc/"div.fare-chart-main div.fare-chart-current-price div").first.attributes['data-suggestion-index'].to_i.should equal(@search.date_from_1.day - 1) #verifico que el mes del precio mostrado sea el correcto
|
|
210
|
+
|
|
211
|
+
#secondary
|
|
212
|
+
visible_months_abbr = BROWSER.div(:class,'fare-chart-secondary').divs(:class,'fare-chart-bars-text').collect{|m| m.text}
|
|
213
|
+
visible_months_abbr.should include?(@search.date_from_1.mes_abrr.capitalize)
|
|
214
|
+
#(doc/"div.fare-chart-secondary div.fare-chart-current-price div").first.attributes['data-month-index'].to_i.should equal(@search.date_from_1.month - 1) #verifico que el mes del precio mostrado sea el correcto
|
|
215
|
+
(doc/"div.fare-chart-secondary div.fare-chart-current-price div").first.attributes['data-suggestion-index'].to_i.should equal(@search.date_from_1.day - 1) #verifico que el mes del precio mostrado sea el correcto
|
|
202
216
|
end
|
|
203
217
|
|
|
204
218
|
And /^Verificar que los datos mostrados en la matriz sean correctos$/ do
|
|
@@ -34,19 +34,22 @@ When /^Ingreso a la home de landing$/ do
|
|
|
34
34
|
end
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
-
When /^Genero resultados de landing$/ do
|
|
37
|
+
When /^Genero resultados de landing en "(.*)"$/ do |site|
|
|
38
38
|
begin
|
|
39
|
-
set_site(
|
|
39
|
+
set_site(site)
|
|
40
40
|
@search = MockSearchRoundtrip.new($SITE,$ENV,"nil")
|
|
41
|
-
@ciudad_elegida =
|
|
42
|
-
BROWSER.goto(@search.generate_url_landing_search(
|
|
43
|
-
@cambio = "$"
|
|
44
|
-
@precio_home_sov = Price.new("$ 100")
|
|
41
|
+
@ciudad_elegida = @search.city_to_1.name
|
|
42
|
+
BROWSER.goto(@search.generate_url_landing_search(@search.city_from_1.code,@search.city_to_1.code))
|
|
45
43
|
set_cookies(BROWSER)
|
|
46
44
|
set_language($SITE)
|
|
47
45
|
rescue Timeout::Error
|
|
48
46
|
stop_browser(BROWSER)
|
|
49
47
|
end
|
|
48
|
+
begin
|
|
49
|
+
Watir::Wait.until(timeout = 60){BROWSER.span(:class,'commonSprite warningSymbol').present? or (BROWSER.div(:id,"clusters").present? or BROWSER.li(:class,"flightPanel").present?) or BROWSER.div(:class,"flightOffers").present? or (BROWSER.div(:class,"noResultsWidthFilterTitle").present? or BROWSER.div(:class,'noResults').present?)}
|
|
50
|
+
rescue Watir::Wait::TimeoutError, Timeout::Error
|
|
51
|
+
stop_browser(BROWSER)
|
|
52
|
+
end
|
|
50
53
|
end
|
|
51
54
|
|
|
52
55
|
When /^Espero que termine de cargar la home de landing$/ do
|
|
@@ -43,7 +43,11 @@ When /^Elijo un itinerario con proveedor "(.*)" y paso a checkout$/ do |prov|
|
|
|
43
43
|
encontro = nil
|
|
44
44
|
begin
|
|
45
45
|
unless page == 1
|
|
46
|
-
|
|
46
|
+
begin
|
|
47
|
+
puts @search.generate_url_results_search_paginate_service(page,json['result']['data']['metadata']['ticket']['hash'])
|
|
48
|
+
rescue
|
|
49
|
+
puts json['result']
|
|
50
|
+
end
|
|
47
51
|
json = @search.paginate(page)
|
|
48
52
|
BROWSER.div(:class,'pagination').li(:class,'pagination-button next').click
|
|
49
53
|
step "Espero que termine de cargar"
|
|
@@ -196,7 +200,7 @@ end
|
|
|
196
200
|
Then /^Verifico que dirija a la pagina de gracias$/ do
|
|
197
201
|
step "Verifico que la pagina no rompa"
|
|
198
202
|
begin
|
|
199
|
-
Watir::Wait.until(timeout = 350){BROWSER.div(:class,'notification-box error-box').present? or BROWSER.span(:class =>'checkout-id').present? or BROWSER.em(:class =>'checkout-id').present? or BROWSER.div(:id =>'popup-new-flight').exist? or BROWSER.span(:class,/error-message/).present? or BROWSER.div(:class, 'notification-box warn-box').present? or BROWSER.div(:class, 'ux-common-
|
|
203
|
+
Watir::Wait.until(timeout = 350){BROWSER.div(:class,'notification-box error-box').present? or BROWSER.span(:class =>'checkout-id').present? or BROWSER.em(:class =>'checkout-id').present? or BROWSER.div(:id =>'popup-new-flight').exist? or BROWSER.span(:class,/error-message/).present? or BROWSER.div(:class, 'notification-box warn-box').present? or BROWSER.div(:class, 'ux-common-error').present?}
|
|
200
204
|
rescue Timeout::Error
|
|
201
205
|
pending("Timeout de 400 segundos al ingresar a la pagina de gracias")
|
|
202
206
|
end
|
|
@@ -204,8 +208,8 @@ Then /^Verifico que dirija a la pagina de gracias$/ do
|
|
|
204
208
|
if BROWSER.div(:class,'notification-box error-box').present?
|
|
205
209
|
pending(BROWSER.div(:class,'notification-box error-box').text)
|
|
206
210
|
end
|
|
207
|
-
if BROWSER.div(:class, 'ux-common-
|
|
208
|
-
pending(BROWSER.div(:class,'ux-common-
|
|
211
|
+
if BROWSER.div(:class, 'ux-common-error').present?
|
|
212
|
+
pending(BROWSER.div(:class,'ux-common-error').text)
|
|
209
213
|
end
|
|
210
214
|
if BROWSER.div(:class,'notification-box warn-box').present?
|
|
211
215
|
BROWSER.div(:class,'notification-box warn-box').text.strip.no_accents.downcase.should_not match("lo sentimos, el vuelo que eligio no se encuentra disponible")
|
|
@@ -3,7 +3,7 @@ Then /^Verifico cada review "(.*)"$/ do |site|
|
|
|
3
3
|
json = @search.get_results_search_service
|
|
4
4
|
valor_link = String.new
|
|
5
5
|
i=0
|
|
6
|
-
BROWSER.div(:class,'flights-tab-header flights-tab-airlinePricesMatrix ').click
|
|
6
|
+
BROWSER.div(:class,'flights-tab-header flights-tab-airlinePricesMatrix ').click if BROWSER.div(:class,'flights-tab-header flights-tab-airlinePricesMatrix ').present?
|
|
7
7
|
sleep(0.5)
|
|
8
8
|
BROWSER.div(:id,'matrix').div(:class,"matrix-airlines-container").uls.each do |ul|
|
|
9
9
|
BROWSER.span(:class,'matrix-next').click until ul.class_name.match(/visible/)
|
|
@@ -38,8 +38,8 @@ Then /^Me logueo con usuario "(.*)" y pass "(.*)"$/ do |email,pass|
|
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
Then /^Verifico que se muestre el error de logueo$/ do
|
|
41
|
-
BROWSER.div(:id,'nibbler-selfservice-login-overlay').span(:class,'nibbler-error-
|
|
42
|
-
BROWSER.div(:id,'nibbler-selfservice-login-overlay').span(:class,'nibbler-error-
|
|
41
|
+
BROWSER.div(:id,'nibbler-selfservice-login-overlay').span(:class,'nibbler-error-400 nibbler-form-error').should visible("error de logueo")
|
|
42
|
+
BROWSER.div(:id,'nibbler-selfservice-login-overlay').span(:class,'nibbler-error-400 nibbler-form-error').text.should match('The username or password is wrong|O nome de usu.{1,2}rio ou senha est.{1,2} incorreta|El usuario o contrase.{1,2}a son incorrectos')
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
Then /^Verifico que se muestren en el header el usuario logueado$/ do
|
|
@@ -62,19 +62,21 @@ Then /^Cierro la lista de deseos$/ do
|
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
Then /^Elijo un itinerario como deseado$/ do
|
|
65
|
-
BROWSER.div(:id,'clusters').div(:class,
|
|
66
|
-
BROWSER.div(:id,'clusters').div(:class,
|
|
67
|
-
BROWSER.div(:id,'clusters').div(:class,
|
|
68
|
-
BROWSER.div(:id,'clusters').div(:class,
|
|
65
|
+
BROWSER.div(:id,'clusters').div(:class,"cluster").radio(:id,'0-outbound-0').click if BROWSER.div(:id,'clusters').div(:class,'cluster').radio(:id,'0-outbound-0').present?
|
|
66
|
+
BROWSER.div(:id,'clusters').div(:class,"cluster").radio(:id,'0-inbound-0').click if BROWSER.div(:id,'clusters').div(:class,'cluster').radio(:id,'0-inbound-0').present?
|
|
67
|
+
BROWSER.div(:id,'clusters').div(:class,"cluster").div(:class,'icons').span(:class,"icon-wishlist").should visible("icono de deseado")
|
|
68
|
+
BROWSER.div(:id,'clusters').div(:class,"cluster").div(:class,'icons').span(:class,"icon-wishlist").click
|
|
69
69
|
cluster = ResultsCluster.new(@search.description,Hpricot.parse(BROWSER.div(:id,'clusters').div(:class,'cluster').html))
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
Then /^Verifico que el itinerario deseado quede marcado$/ do
|
|
73
|
-
sleep(
|
|
74
|
-
BROWSER.div(:id,'clusters').div(:class,'cluster').div(:class,'icons').span(:class,'icon-wishlist ux-common-icon-favourites
|
|
73
|
+
sleep(1)
|
|
74
|
+
BROWSER.div(:id,'clusters').div(:class,'cluster').div(:class,'icons').span(:class,'icon-wishlist ux-common-icon-favourites flights-title-tooltip ux-common-icon-favourites-selected').should visible("icono de deseado seleccionado")
|
|
75
|
+
sleep(1)
|
|
75
76
|
end
|
|
76
77
|
|
|
77
78
|
Then /^Verifico que el itinerario deseado quede en la lista de deseos$/ do
|
|
79
|
+
sleep(1)
|
|
78
80
|
BROWSER.div(:class,'nibbler-popup-wishlist nibbler-header-popup big').div(:class,'nibbler-common-last-searches nibbler-common-with').should visible("lista de deseos")
|
|
79
81
|
end
|
|
80
82
|
|
|
@@ -88,11 +90,12 @@ Then /^Verifico que dirija correctamente a la pagina de resultados$/ do
|
|
|
88
90
|
end
|
|
89
91
|
|
|
90
92
|
Then /^Verifico que el itinerario deseado este marcado correctamente$/ do
|
|
93
|
+
sleep(2)
|
|
91
94
|
unless BROWSER.div(:class,'messages one-line-message wishlist-error').present?
|
|
92
95
|
BROWSER.div(:id,'clusters').div(:class,'cluster').radio(:id,'0-outbound-0').set?.should be_true if BROWSER.div(:id,'clusters').div(:class,'cluster').radio(:id,'0-outbound-0').present?
|
|
93
96
|
BROWSER.div(:id,'clusters').div(:class,'cluster').radio(:id,'0-inbound-0').set?.should be_true if BROWSER.div(:id,'clusters').div(:class,'cluster').radio(:id,'0-inbound-0').present?
|
|
94
|
-
BROWSER.div(:id,'clusters').div(:class,'cluster').div(:class,'icons').span(:class,
|
|
95
|
-
BROWSER.div(:id,'clusters').div(:class,'cluster').span(:class,
|
|
97
|
+
BROWSER.div(:id,'clusters').div(:class,'cluster').div(:class,'icons').span(:class,"ux-common-icon-favourites-selected").should visible("icono de deseado seleccionado")
|
|
98
|
+
BROWSER.div(:id,'clusters').div(:class,'cluster').div(:class,'flights-wishlist-item').span(:class,"ux-common-icon-favourites-selected").should visible("icono de deseado en lista de precios")
|
|
96
99
|
end
|
|
97
100
|
end
|
|
98
101
|
|
|
@@ -4,7 +4,10 @@ Característica: checkout.chat
|
|
|
4
4
|
|
|
5
5
|
@chat
|
|
6
6
|
Esquema del escenario: Se ingresa al checkout con ciertos parametros de entrada, se activa el chat y se loguea un user de prueba
|
|
7
|
-
Cuando Ingreso a la pagina de
|
|
7
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
|
|
8
|
+
Cuando Espero que termine de cargar
|
|
9
|
+
Entonces Verifico que traiga resultados
|
|
10
|
+
Cuando Elijo un itinerario y paso a checkout
|
|
8
11
|
Cuando Verifico que ingrese al checkout
|
|
9
12
|
Cuando aplico el js del chat
|
|
10
13
|
Cuando espero que se muestre la caja del chat
|
|
@@ -27,9 +27,9 @@ Característica: landing.integration
|
|
|
27
27
|
Cuando Verifico la pagina donde ingresa
|
|
28
28
|
Cuando Si ingreso resultados, Espero que termine de cargar
|
|
29
29
|
Entonces Si ingreso resultados, Verifico que sea la pagina de resultados correcta
|
|
30
|
-
Y
|
|
31
|
-
Y
|
|
32
|
-
Y Si ingreso checkout, Verifico que ingrese al checkout
|
|
30
|
+
Y Verifico que traiga resultados
|
|
31
|
+
Y Verifico que el valor elejido en landing se encuentre en la lista de resultados
|
|
32
|
+
#Y Si ingreso checkout, Verifico que ingrese al checkout
|
|
33
33
|
|
|
34
34
|
@ar
|
|
35
35
|
@roundtrip
|
|
@@ -5,11 +5,7 @@ Característica: landing.positive
|
|
|
5
5
|
|
|
6
6
|
@positive
|
|
7
7
|
Esquema del escenario: Ingresar a la home de landing
|
|
8
|
-
Cuando
|
|
9
|
-
Entonces Verifico que la pagina no rompa
|
|
10
|
-
Cuando Espero que termine de cargar la home de landing
|
|
11
|
-
Cuando Elijo un link para pasar a los resultados de landing
|
|
12
|
-
Cuando Ingreso a resultados de landing
|
|
8
|
+
Cuando Genero resultados de landing en "<pais>"
|
|
13
9
|
Entonces Verifico que la pagina no rompa
|
|
14
10
|
Entonces Verifico que traiga resultados de landings
|
|
15
11
|
Cuando Elijo el tipo de vuelo "<tipo>"
|
|
@@ -8,7 +8,7 @@ Característica: matrix.fare_chart
|
|
|
8
8
|
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" con origen "<from>" y destino "<to>" de tipo "<cabotage>"
|
|
9
9
|
Cuando Espero que termine de cargar
|
|
10
10
|
Entonces Verifico que traiga resultados
|
|
11
|
-
Cuando Fuerzo el abztesting de showFareChart al "45"
|
|
11
|
+
#Cuando Fuerzo el abztesting de showFareChart al "45"
|
|
12
12
|
Y Refresco la pagina
|
|
13
13
|
Cuando Espero que termine de cargar
|
|
14
14
|
Y Ingreso a la matriz de tendencia de precios
|
|
@@ -17,6 +17,7 @@ Característica: matrix.price
|
|
|
17
17
|
Y Verifico que exista otra fecha con precio en la matriz de precios
|
|
18
18
|
Entonces Espero que termine de cargar
|
|
19
19
|
Y Si no se muestra la matriz de precios, Realizo las busquedas para recargar la matriz
|
|
20
|
+
Entonces Espero que termine de cargar
|
|
20
21
|
Entonces Verifico que se muestre la matriz de precios
|
|
21
22
|
Y Verifico la correcta disposicion de la matriz de precios
|
|
22
23
|
Y Verifico las fechas de la matriz de precios
|
|
@@ -25,6 +26,7 @@ Característica: matrix.price
|
|
|
25
26
|
Y Elijo una opcion sin precio en la matriz de precios
|
|
26
27
|
Entonces Espero que termine de cargar
|
|
27
28
|
Y Si no se muestra la matriz de precios, Realizo las busquedas para recargar la matriz
|
|
29
|
+
Entonces Espero que termine de cargar
|
|
28
30
|
Entonces Verifico que se muestre la matriz de precios
|
|
29
31
|
Y Verifico la correcta disposicion de la matriz de precios
|
|
30
32
|
Y Verifico las fechas de la matriz de precios
|
|
@@ -15,7 +15,7 @@ Característica: search.wish_list
|
|
|
15
15
|
Cuando Me logueo con usuario "testvuelos@despegar.com" y pass "despegar"
|
|
16
16
|
Entonces Verifico que se muestre el error de logueo
|
|
17
17
|
Cuando Me logueo con usuario "testvuelos@despegar.com" y pass "d3sp3g4r"
|
|
18
|
-
Entonces Verifico que se muestren en el header el usuario logueado
|
|
18
|
+
#Entonces Verifico que se muestren en el header el usuario logueado
|
|
19
19
|
Cuando Limpio la lista de deseos
|
|
20
20
|
Y Cierro la lista de deseos
|
|
21
21
|
Cuando Abro la lista de deseos
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]
|
|
17
17
|
|
|
18
|
-
gem.version = '2.1.
|
|
18
|
+
gem.version = '2.1.2' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
|
|
19
19
|
|
|
20
20
|
gem.add_dependency('henry-container', '>= 0.1.39')
|
|
21
21
|
gem.add_dependency('watir-webdriver')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flights_gui_henry_tests
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lgonzalez,lsimean
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: henry-container
|