flights_gui_henry_tests 2.4.5 → 2.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/features/step_definitions/checkout/price_difference_steps.rb +8 -0
- data/features/support/env.rb +1 -1
- data/features/support/lib/clusters/results_cluster.rb +2 -2
- data/features/tests/checkout/price_difference.feature +224 -0
- data/flights_gui_henry_tests.gemspec +1 -1
- data/henry-context.yml +833 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MTkxMWUzMmYxYWE3ZWExMTUyZDlkYTk3MmMyMzg0YmQxYTI0ZmI5Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzBhYjgyYWZjMjc1NDE3ODg3MDcwZDAxMTY5YWViYzQyZmU1YjM0OA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MWU3ODczNDcxNTMyZWYwN2ZmZmQ5ZjA2YjA3ZjgxYzgwYzNiNDg1MjEwOTk4
|
10
|
+
M2ZjMTcyZGM2MDMzY2ExYjE1NDM5OGQ5MGYzNDc4OTYyNWMzNjU3NjE3OTJl
|
11
|
+
MTA1Mzc5MjBjNmM3ZDg4MTA3MGYyYmMyMmVhNGI4ZWY5ZGM1OTQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWM3ZTA1ZDQ4Yzg2NTIyOTliNWZhZDI0NjYyMjZlYjgzODU4NTU0ZDFhNWI0
|
14
|
+
OTk4ODY5OTMxYjA1OWMxZmRlOWVjYTkxMDcwNmFhNDIyNTYwMjEwODA3MTZk
|
15
|
+
ZGUyYjExNWY5YzFkNjgzY2JhNWQ2NmRiMzljNDk0YTM4MTNlNmY=
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
Then /^completo el mail de contacto para forzar cambio de precio$/ do
|
3
|
+
debugger
|
4
|
+
price = (@itinerario["tarifas"]["total"] * 0.1).to_i
|
5
|
+
container = BROWSER.fieldset(:id,'contact')
|
6
|
+
container.text_field(:id,"contact-email").set("mockedbooking_priceDifference_#{price}_#{price}@despegar.com")
|
7
|
+
container.text_field(:id,"contact-email-repeat").set("mockedbooking_priceDifference_#{price}_#{price}@despegar.com")
|
8
|
+
end
|
data/features/support/env.rb
CHANGED
@@ -42,7 +42,7 @@ def add_cookie(type)
|
|
42
42
|
when 'FSM' then "fsm-rest=beta"
|
43
43
|
when 'CHAS' then "chas-flight=beta"
|
44
44
|
when 'DEBASE' then "flights-dbs-new=flights-dbs-new-b"
|
45
|
-
else "landing-f-gui=beta|results-f-gui=beta|chkf-app=beta"
|
45
|
+
else "landing-f-gui=beta|results-f-gui=beta|chkf-app=beta|chas-flight=beta"
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
@@ -28,7 +28,7 @@ class ResultsCluster
|
|
28
28
|
destino= (div_datos/"span.city-arrival").first.inner_text.gsub(/,/,'').strip.no_accents
|
29
29
|
origen_iata = (div_datos/"a")[0].inner_text.strip
|
30
30
|
destino_iata = (div_datos/"a")[1].inner_text.strip
|
31
|
-
fecha = (div_datos/"span.date").first.empty? ? (
|
31
|
+
fecha = (div_datos/"span.date").first.empty? ? (div_datos_ida/"li.date").first.inner_text.strip.no_accents : (div_datos/"span.date").first.inner_text.strip.no_accents
|
32
32
|
escala = (div_datos_ida/"li.stops/a").inner_text.strip.empty? ? "Sin escalas" : (div_datos_ida/"li.stops/a").inner_text.to_i
|
33
33
|
aerolinea = Array.new
|
34
34
|
i = 0
|
@@ -57,7 +57,7 @@ class ResultsCluster
|
|
57
57
|
destino= (div_datos/"span.city-arrival").first.inner_text.gsub(/,/,'').strip.no_accents
|
58
58
|
origen_iata = (div_datos/"a")[0].inner_text.strip
|
59
59
|
destino_iata = (div_datos/"a")[1].inner_text.strip
|
60
|
-
fecha = (div_datos/"span.date").last.empty? ? (
|
60
|
+
fecha = (div_datos/"span.date").last.empty? ? (div_datos_vuelta/"li.date").last.inner_text.strip.no_accents : (div_datos/"span.date").last.inner_text.strip.no_accents
|
61
61
|
escala = (div_datos_vuelta/"li.stops/a").inner_text.strip.empty? ? "Sin escalas" : (div_datos_vuelta/"li.stops/a").inner_text.to_i
|
62
62
|
aerolinea = Array.new
|
63
63
|
i = 0
|
@@ -0,0 +1,224 @@
|
|
1
|
+
#language: es
|
2
|
+
@checkout
|
3
|
+
Característica: checkout.price_difference
|
4
|
+
Se verifica la funcionalidad de diferencia de precios
|
5
|
+
|
6
|
+
@price_difference
|
7
|
+
Esquema del escenario: Ingresar a la pagina del checkout, formar el cambio de precio, verificar.
|
8
|
+
Cuando Ingreso a la pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
|
9
|
+
Cuando Espero que termine de cargar
|
10
|
+
Entonces Verifico que traiga resultados
|
11
|
+
Cuando Elijo un itinerario y paso a checkout
|
12
|
+
Cuando Verifico que ingrese al checkout
|
13
|
+
Entonces Completo el formulario de pasajeros
|
14
|
+
Y Completo el formulario de tarjeta
|
15
|
+
Y Completo los datos de resolucion AFIP
|
16
|
+
Y Completo los datos de contacto
|
17
|
+
Y Si pide factura fiscal, Completo los campos de factura fiscal
|
18
|
+
Y completo el mail de contacto para forzar cambio de precio
|
19
|
+
Y Realizo la compra
|
20
|
+
Entonces Verifico que dirija a la pagina de gracias
|
21
|
+
Entonces Si el checkout me pide mas datos de tarjeta, lleno los datos de tarjeta adicionales
|
22
|
+
Entonces Si se muestra el popup de no disponibilidad, elijo otro vuelo
|
23
|
+
Entonces Si debo completar de vuelta el formulario, completo el formulario
|
24
|
+
Y Verifico que genere id cro
|
25
|
+
Y Levanto los datos del vuelo
|
26
|
+
#Cuando Si cumple para pruebas en fenix, Inicializo las pruebas en fenix
|
27
|
+
#Entonces Si cumple para pruebas en fenix, Verifico que las pruebas en fenix esten correctas
|
28
|
+
|
29
|
+
@ar
|
30
|
+
@roundtrip
|
31
|
+
Ejemplos:
|
32
|
+
|pais|tipo|cabotage|
|
33
|
+
|AR |roundtrip|nil|
|
34
|
+
@ar
|
35
|
+
@oneway
|
36
|
+
Ejemplos:
|
37
|
+
|pais|tipo|cabotage|
|
38
|
+
|AR |oneway|nil|
|
39
|
+
@ar
|
40
|
+
@multipledestinations
|
41
|
+
Ejemplos:
|
42
|
+
|pais|tipo|cabotage|
|
43
|
+
|AR |multipledestinations|nil|
|
44
|
+
@br
|
45
|
+
@roundtrip
|
46
|
+
Ejemplos:
|
47
|
+
|pais|tipo|cabotage|
|
48
|
+
|BR |roundtrip|nil|
|
49
|
+
@br
|
50
|
+
@oneway
|
51
|
+
Ejemplos:
|
52
|
+
|pais|tipo|cabotage|
|
53
|
+
|BR |oneway|nil|
|
54
|
+
@br
|
55
|
+
@multipledestinations
|
56
|
+
Ejemplos:
|
57
|
+
|pais|tipo|cabotage|
|
58
|
+
|BR |multipledestinations|nil|
|
59
|
+
@mx
|
60
|
+
@roundtrip
|
61
|
+
Ejemplos:
|
62
|
+
|pais|tipo|cabotage|
|
63
|
+
|MX |roundtrip|nil|
|
64
|
+
@mx
|
65
|
+
@oneway
|
66
|
+
Ejemplos:
|
67
|
+
|pais|tipo|cabotage|
|
68
|
+
|MX |oneway|nil|
|
69
|
+
@mx
|
70
|
+
@multipledestinations
|
71
|
+
Ejemplos:
|
72
|
+
|pais|tipo|cabotage|
|
73
|
+
|MX |multipledestinations|nil|
|
74
|
+
@us
|
75
|
+
@roundtrip
|
76
|
+
Ejemplos:
|
77
|
+
|pais|tipo|cabotage|
|
78
|
+
|US |roundtrip|nil|
|
79
|
+
@us
|
80
|
+
@oneway
|
81
|
+
Ejemplos:
|
82
|
+
|pais|tipo|cabotage|
|
83
|
+
|US |oneway|nil|
|
84
|
+
@us
|
85
|
+
@multipledestinations
|
86
|
+
Ejemplos:
|
87
|
+
|pais|tipo|cabotage|
|
88
|
+
|US |multipledestinations|nil|
|
89
|
+
@uy
|
90
|
+
@roundtrip
|
91
|
+
Ejemplos:
|
92
|
+
|pais|tipo|cabotage|
|
93
|
+
|UY |roundtrip|nil|
|
94
|
+
@uy
|
95
|
+
@oneway
|
96
|
+
Ejemplos:
|
97
|
+
|pais|tipo|cabotage|
|
98
|
+
|UY |oneway|nil|
|
99
|
+
@uy
|
100
|
+
@multipledestinations
|
101
|
+
Ejemplos:
|
102
|
+
|pais|tipo|cabotage|
|
103
|
+
|UY |multipledestinations|nil|
|
104
|
+
@pe
|
105
|
+
@roundtrip
|
106
|
+
Ejemplos:
|
107
|
+
|pais|tipo|cabotage|
|
108
|
+
|PE |roundtrip|nil|
|
109
|
+
@pe
|
110
|
+
@oneway
|
111
|
+
Ejemplos:
|
112
|
+
|pais|tipo|cabotage|
|
113
|
+
|PE |oneway|nil|
|
114
|
+
@pe
|
115
|
+
@multipledestinations
|
116
|
+
Ejemplos:
|
117
|
+
|pais|tipo|cabotage|
|
118
|
+
|PE |multipledestinations|nil|
|
119
|
+
@co
|
120
|
+
@roundtrip
|
121
|
+
Ejemplos:
|
122
|
+
|pais|tipo|cabotage|
|
123
|
+
|CO |roundtrip|nil|
|
124
|
+
@co
|
125
|
+
@oneway
|
126
|
+
Ejemplos:
|
127
|
+
|pais|tipo|cabotage|
|
128
|
+
|CO |oneway|nil|
|
129
|
+
@co
|
130
|
+
@multipledestinations
|
131
|
+
Ejemplos:
|
132
|
+
|pais|tipo|cabotage|
|
133
|
+
|CO |multipledestinations|nil|
|
134
|
+
@cr
|
135
|
+
@roundtrip
|
136
|
+
Ejemplos:
|
137
|
+
|pais|tipo|cabotage|
|
138
|
+
|CR |roundtrip|nil|
|
139
|
+
@cr
|
140
|
+
@oneway
|
141
|
+
Ejemplos:
|
142
|
+
|pais|tipo|cabotage|
|
143
|
+
|CR |oneway|nil|
|
144
|
+
@cr
|
145
|
+
@multipledestinations
|
146
|
+
Ejemplos:
|
147
|
+
|pais|tipo|cabotage|
|
148
|
+
|CR |multipledestinations|nil|
|
149
|
+
@ve
|
150
|
+
@roundtrip
|
151
|
+
Ejemplos:
|
152
|
+
|pais|tipo|cabotage|
|
153
|
+
|VE |roundtrip|nil|
|
154
|
+
@ve
|
155
|
+
@oneway
|
156
|
+
Ejemplos:
|
157
|
+
|pais|tipo|cabotage|
|
158
|
+
|VE |oneway|nil|
|
159
|
+
@ve
|
160
|
+
@multipledestinations
|
161
|
+
Ejemplos:
|
162
|
+
|pais|tipo|cabotage|
|
163
|
+
|VE |multipledestinations|nil|
|
164
|
+
@pa
|
165
|
+
@roundtrip
|
166
|
+
Ejemplos:
|
167
|
+
|pais|tipo|cabotage|
|
168
|
+
|PA |roundtrip|nil|
|
169
|
+
@pa
|
170
|
+
@oneway
|
171
|
+
Ejemplos:
|
172
|
+
|pais|tipo|cabotage|
|
173
|
+
|PA |oneway|nil|
|
174
|
+
@pa
|
175
|
+
@multipledestinations
|
176
|
+
Ejemplos:
|
177
|
+
|pais|tipo|cabotage|
|
178
|
+
|PA |multipledestinations|nil|
|
179
|
+
@ec
|
180
|
+
@roundtrip
|
181
|
+
Ejemplos:
|
182
|
+
|pais|tipo|cabotage|
|
183
|
+
|EC |roundtrip|nil|
|
184
|
+
@ec
|
185
|
+
@oneway
|
186
|
+
Ejemplos:
|
187
|
+
|pais|tipo|cabotage|
|
188
|
+
|EC |oneway|nil|
|
189
|
+
@ec
|
190
|
+
@multipledestinations
|
191
|
+
Ejemplos:
|
192
|
+
|pais|tipo|cabotage|
|
193
|
+
|EC |multipledestinations|nil|
|
194
|
+
@cl
|
195
|
+
@roundtrip
|
196
|
+
Ejemplos:
|
197
|
+
|pais|tipo|cabotage|
|
198
|
+
|CL |roundtrip|nil|
|
199
|
+
@cl
|
200
|
+
@oneway
|
201
|
+
Ejemplos:
|
202
|
+
|pais|tipo|cabotage|
|
203
|
+
|CL |oneway|nil|
|
204
|
+
@cl
|
205
|
+
@multipledestinations
|
206
|
+
Ejemplos:
|
207
|
+
|pais|tipo|cabotage|
|
208
|
+
|CL |multipledestinations|nil|
|
209
|
+
@pr
|
210
|
+
@roundtrip
|
211
|
+
Ejemplos:
|
212
|
+
|pais|tipo|cabotage|
|
213
|
+
|PR |roundtrip|nil|
|
214
|
+
@pr
|
215
|
+
@oneway
|
216
|
+
Ejemplos:
|
217
|
+
|pais|tipo|cabotage|
|
218
|
+
|PR |oneway|nil|
|
219
|
+
@pr
|
220
|
+
@multipledestinations
|
221
|
+
Ejemplos:
|
222
|
+
|pais|tipo|cabotage|
|
223
|
+
|PR |multipledestinations|nil|
|
224
|
+
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]
|
17
17
|
|
18
|
-
gem.version = '2.4.
|
18
|
+
gem.version = '2.4.6' #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')
|
data/henry-context.yml
CHANGED
@@ -15926,6 +15926,839 @@ tasks:
|
|
15926
15926
|
recipients:
|
15927
15927
|
- estebanldh@gmail.com
|
15928
15928
|
- nsimean@despegar.com
|
15929
|
+
- name: checkout.price_difference
|
15930
|
+
class_name: Henry::Task::CucumberTask
|
15931
|
+
options:
|
15932
|
+
tags:
|
15933
|
+
- checkout
|
15934
|
+
- price_difference
|
15935
|
+
expand: true
|
15936
|
+
no-source: true
|
15937
|
+
reports:
|
15938
|
+
- format: html
|
15939
|
+
name: ${DATE}_${TASK_NAME}.html
|
15940
|
+
recipients:
|
15941
|
+
- estebanldh@gmail.com
|
15942
|
+
- nsimean@despegar.com
|
15943
|
+
- name: checkout.price_difference.ar
|
15944
|
+
class_name: Henry::Task::CucumberTask
|
15945
|
+
options:
|
15946
|
+
tags:
|
15947
|
+
- checkout
|
15948
|
+
- price_difference
|
15949
|
+
- ar
|
15950
|
+
expand: true
|
15951
|
+
no-source: true
|
15952
|
+
reports:
|
15953
|
+
- format: html
|
15954
|
+
name: ${DATE}_${TASK_NAME}.html
|
15955
|
+
recipients:
|
15956
|
+
- estebanldh@gmail.com
|
15957
|
+
- nsimean@despegar.com
|
15958
|
+
- name: checkout.price_difference.ar.roundtrip
|
15959
|
+
class_name: Henry::Task::CucumberTask
|
15960
|
+
options:
|
15961
|
+
tags:
|
15962
|
+
- checkout
|
15963
|
+
- price_difference
|
15964
|
+
- ar
|
15965
|
+
- roundtrip
|
15966
|
+
expand: true
|
15967
|
+
no-source: true
|
15968
|
+
reports:
|
15969
|
+
- format: html
|
15970
|
+
name: ${DATE}_${TASK_NAME}.html
|
15971
|
+
recipients:
|
15972
|
+
- estebanldh@gmail.com
|
15973
|
+
- nsimean@despegar.com
|
15974
|
+
- name: checkout.price_difference.ar.oneway
|
15975
|
+
class_name: Henry::Task::CucumberTask
|
15976
|
+
options:
|
15977
|
+
tags:
|
15978
|
+
- checkout
|
15979
|
+
- price_difference
|
15980
|
+
- ar
|
15981
|
+
- oneway
|
15982
|
+
expand: true
|
15983
|
+
no-source: true
|
15984
|
+
reports:
|
15985
|
+
- format: html
|
15986
|
+
name: ${DATE}_${TASK_NAME}.html
|
15987
|
+
recipients:
|
15988
|
+
- estebanldh@gmail.com
|
15989
|
+
- nsimean@despegar.com
|
15990
|
+
- name: checkout.price_difference.ar.multipledestinations
|
15991
|
+
class_name: Henry::Task::CucumberTask
|
15992
|
+
options:
|
15993
|
+
tags:
|
15994
|
+
- checkout
|
15995
|
+
- price_difference
|
15996
|
+
- ar
|
15997
|
+
- multipledestinations
|
15998
|
+
expand: true
|
15999
|
+
no-source: true
|
16000
|
+
reports:
|
16001
|
+
- format: html
|
16002
|
+
name: ${DATE}_${TASK_NAME}.html
|
16003
|
+
recipients:
|
16004
|
+
- estebanldh@gmail.com
|
16005
|
+
- nsimean@despegar.com
|
16006
|
+
- name: checkout.price_difference.br
|
16007
|
+
class_name: Henry::Task::CucumberTask
|
16008
|
+
options:
|
16009
|
+
tags:
|
16010
|
+
- checkout
|
16011
|
+
- price_difference
|
16012
|
+
- br
|
16013
|
+
expand: true
|
16014
|
+
no-source: true
|
16015
|
+
reports:
|
16016
|
+
- format: html
|
16017
|
+
name: ${DATE}_${TASK_NAME}.html
|
16018
|
+
recipients:
|
16019
|
+
- estebanldh@gmail.com
|
16020
|
+
- nsimean@despegar.com
|
16021
|
+
- name: checkout.price_difference.br.roundtrip
|
16022
|
+
class_name: Henry::Task::CucumberTask
|
16023
|
+
options:
|
16024
|
+
tags:
|
16025
|
+
- checkout
|
16026
|
+
- price_difference
|
16027
|
+
- br
|
16028
|
+
- roundtrip
|
16029
|
+
expand: true
|
16030
|
+
no-source: true
|
16031
|
+
reports:
|
16032
|
+
- format: html
|
16033
|
+
name: ${DATE}_${TASK_NAME}.html
|
16034
|
+
recipients:
|
16035
|
+
- estebanldh@gmail.com
|
16036
|
+
- nsimean@despegar.com
|
16037
|
+
- name: checkout.price_difference.br.oneway
|
16038
|
+
class_name: Henry::Task::CucumberTask
|
16039
|
+
options:
|
16040
|
+
tags:
|
16041
|
+
- checkout
|
16042
|
+
- price_difference
|
16043
|
+
- br
|
16044
|
+
- oneway
|
16045
|
+
expand: true
|
16046
|
+
no-source: true
|
16047
|
+
reports:
|
16048
|
+
- format: html
|
16049
|
+
name: ${DATE}_${TASK_NAME}.html
|
16050
|
+
recipients:
|
16051
|
+
- estebanldh@gmail.com
|
16052
|
+
- nsimean@despegar.com
|
16053
|
+
- name: checkout.price_difference.br.multipledestinations
|
16054
|
+
class_name: Henry::Task::CucumberTask
|
16055
|
+
options:
|
16056
|
+
tags:
|
16057
|
+
- checkout
|
16058
|
+
- price_difference
|
16059
|
+
- br
|
16060
|
+
- multipledestinations
|
16061
|
+
expand: true
|
16062
|
+
no-source: true
|
16063
|
+
reports:
|
16064
|
+
- format: html
|
16065
|
+
name: ${DATE}_${TASK_NAME}.html
|
16066
|
+
recipients:
|
16067
|
+
- estebanldh@gmail.com
|
16068
|
+
- nsimean@despegar.com
|
16069
|
+
- name: checkout.price_difference.mx
|
16070
|
+
class_name: Henry::Task::CucumberTask
|
16071
|
+
options:
|
16072
|
+
tags:
|
16073
|
+
- checkout
|
16074
|
+
- price_difference
|
16075
|
+
- mx
|
16076
|
+
expand: true
|
16077
|
+
no-source: true
|
16078
|
+
reports:
|
16079
|
+
- format: html
|
16080
|
+
name: ${DATE}_${TASK_NAME}.html
|
16081
|
+
recipients:
|
16082
|
+
- estebanldh@gmail.com
|
16083
|
+
- nsimean@despegar.com
|
16084
|
+
- name: checkout.price_difference.mx.roundtrip
|
16085
|
+
class_name: Henry::Task::CucumberTask
|
16086
|
+
options:
|
16087
|
+
tags:
|
16088
|
+
- checkout
|
16089
|
+
- price_difference
|
16090
|
+
- mx
|
16091
|
+
- roundtrip
|
16092
|
+
expand: true
|
16093
|
+
no-source: true
|
16094
|
+
reports:
|
16095
|
+
- format: html
|
16096
|
+
name: ${DATE}_${TASK_NAME}.html
|
16097
|
+
recipients:
|
16098
|
+
- estebanldh@gmail.com
|
16099
|
+
- nsimean@despegar.com
|
16100
|
+
- name: checkout.price_difference.mx.oneway
|
16101
|
+
class_name: Henry::Task::CucumberTask
|
16102
|
+
options:
|
16103
|
+
tags:
|
16104
|
+
- checkout
|
16105
|
+
- price_difference
|
16106
|
+
- mx
|
16107
|
+
- oneway
|
16108
|
+
expand: true
|
16109
|
+
no-source: true
|
16110
|
+
reports:
|
16111
|
+
- format: html
|
16112
|
+
name: ${DATE}_${TASK_NAME}.html
|
16113
|
+
recipients:
|
16114
|
+
- estebanldh@gmail.com
|
16115
|
+
- nsimean@despegar.com
|
16116
|
+
- name: checkout.price_difference.mx.multipledestinations
|
16117
|
+
class_name: Henry::Task::CucumberTask
|
16118
|
+
options:
|
16119
|
+
tags:
|
16120
|
+
- checkout
|
16121
|
+
- price_difference
|
16122
|
+
- mx
|
16123
|
+
- multipledestinations
|
16124
|
+
expand: true
|
16125
|
+
no-source: true
|
16126
|
+
reports:
|
16127
|
+
- format: html
|
16128
|
+
name: ${DATE}_${TASK_NAME}.html
|
16129
|
+
recipients:
|
16130
|
+
- estebanldh@gmail.com
|
16131
|
+
- nsimean@despegar.com
|
16132
|
+
- name: checkout.price_difference.us
|
16133
|
+
class_name: Henry::Task::CucumberTask
|
16134
|
+
options:
|
16135
|
+
tags:
|
16136
|
+
- checkout
|
16137
|
+
- price_difference
|
16138
|
+
- us
|
16139
|
+
expand: true
|
16140
|
+
no-source: true
|
16141
|
+
reports:
|
16142
|
+
- format: html
|
16143
|
+
name: ${DATE}_${TASK_NAME}.html
|
16144
|
+
recipients:
|
16145
|
+
- estebanldh@gmail.com
|
16146
|
+
- nsimean@despegar.com
|
16147
|
+
- name: checkout.price_difference.us.roundtrip
|
16148
|
+
class_name: Henry::Task::CucumberTask
|
16149
|
+
options:
|
16150
|
+
tags:
|
16151
|
+
- checkout
|
16152
|
+
- price_difference
|
16153
|
+
- us
|
16154
|
+
- roundtrip
|
16155
|
+
expand: true
|
16156
|
+
no-source: true
|
16157
|
+
reports:
|
16158
|
+
- format: html
|
16159
|
+
name: ${DATE}_${TASK_NAME}.html
|
16160
|
+
recipients:
|
16161
|
+
- estebanldh@gmail.com
|
16162
|
+
- nsimean@despegar.com
|
16163
|
+
- name: checkout.price_difference.us.oneway
|
16164
|
+
class_name: Henry::Task::CucumberTask
|
16165
|
+
options:
|
16166
|
+
tags:
|
16167
|
+
- checkout
|
16168
|
+
- price_difference
|
16169
|
+
- us
|
16170
|
+
- oneway
|
16171
|
+
expand: true
|
16172
|
+
no-source: true
|
16173
|
+
reports:
|
16174
|
+
- format: html
|
16175
|
+
name: ${DATE}_${TASK_NAME}.html
|
16176
|
+
recipients:
|
16177
|
+
- estebanldh@gmail.com
|
16178
|
+
- nsimean@despegar.com
|
16179
|
+
- name: checkout.price_difference.us.multipledestinations
|
16180
|
+
class_name: Henry::Task::CucumberTask
|
16181
|
+
options:
|
16182
|
+
tags:
|
16183
|
+
- checkout
|
16184
|
+
- price_difference
|
16185
|
+
- us
|
16186
|
+
- multipledestinations
|
16187
|
+
expand: true
|
16188
|
+
no-source: true
|
16189
|
+
reports:
|
16190
|
+
- format: html
|
16191
|
+
name: ${DATE}_${TASK_NAME}.html
|
16192
|
+
recipients:
|
16193
|
+
- estebanldh@gmail.com
|
16194
|
+
- nsimean@despegar.com
|
16195
|
+
- name: checkout.price_difference.uy
|
16196
|
+
class_name: Henry::Task::CucumberTask
|
16197
|
+
options:
|
16198
|
+
tags:
|
16199
|
+
- checkout
|
16200
|
+
- price_difference
|
16201
|
+
- uy
|
16202
|
+
expand: true
|
16203
|
+
no-source: true
|
16204
|
+
reports:
|
16205
|
+
- format: html
|
16206
|
+
name: ${DATE}_${TASK_NAME}.html
|
16207
|
+
recipients:
|
16208
|
+
- estebanldh@gmail.com
|
16209
|
+
- nsimean@despegar.com
|
16210
|
+
- name: checkout.price_difference.uy.roundtrip
|
16211
|
+
class_name: Henry::Task::CucumberTask
|
16212
|
+
options:
|
16213
|
+
tags:
|
16214
|
+
- checkout
|
16215
|
+
- price_difference
|
16216
|
+
- uy
|
16217
|
+
- roundtrip
|
16218
|
+
expand: true
|
16219
|
+
no-source: true
|
16220
|
+
reports:
|
16221
|
+
- format: html
|
16222
|
+
name: ${DATE}_${TASK_NAME}.html
|
16223
|
+
recipients:
|
16224
|
+
- estebanldh@gmail.com
|
16225
|
+
- nsimean@despegar.com
|
16226
|
+
- name: checkout.price_difference.uy.oneway
|
16227
|
+
class_name: Henry::Task::CucumberTask
|
16228
|
+
options:
|
16229
|
+
tags:
|
16230
|
+
- checkout
|
16231
|
+
- price_difference
|
16232
|
+
- uy
|
16233
|
+
- oneway
|
16234
|
+
expand: true
|
16235
|
+
no-source: true
|
16236
|
+
reports:
|
16237
|
+
- format: html
|
16238
|
+
name: ${DATE}_${TASK_NAME}.html
|
16239
|
+
recipients:
|
16240
|
+
- estebanldh@gmail.com
|
16241
|
+
- nsimean@despegar.com
|
16242
|
+
- name: checkout.price_difference.uy.multipledestinations
|
16243
|
+
class_name: Henry::Task::CucumberTask
|
16244
|
+
options:
|
16245
|
+
tags:
|
16246
|
+
- checkout
|
16247
|
+
- price_difference
|
16248
|
+
- uy
|
16249
|
+
- multipledestinations
|
16250
|
+
expand: true
|
16251
|
+
no-source: true
|
16252
|
+
reports:
|
16253
|
+
- format: html
|
16254
|
+
name: ${DATE}_${TASK_NAME}.html
|
16255
|
+
recipients:
|
16256
|
+
- estebanldh@gmail.com
|
16257
|
+
- nsimean@despegar.com
|
16258
|
+
- name: checkout.price_difference.pe
|
16259
|
+
class_name: Henry::Task::CucumberTask
|
16260
|
+
options:
|
16261
|
+
tags:
|
16262
|
+
- checkout
|
16263
|
+
- price_difference
|
16264
|
+
- pe
|
16265
|
+
expand: true
|
16266
|
+
no-source: true
|
16267
|
+
reports:
|
16268
|
+
- format: html
|
16269
|
+
name: ${DATE}_${TASK_NAME}.html
|
16270
|
+
recipients:
|
16271
|
+
- estebanldh@gmail.com
|
16272
|
+
- nsimean@despegar.com
|
16273
|
+
- name: checkout.price_difference.pe.roundtrip
|
16274
|
+
class_name: Henry::Task::CucumberTask
|
16275
|
+
options:
|
16276
|
+
tags:
|
16277
|
+
- checkout
|
16278
|
+
- price_difference
|
16279
|
+
- pe
|
16280
|
+
- roundtrip
|
16281
|
+
expand: true
|
16282
|
+
no-source: true
|
16283
|
+
reports:
|
16284
|
+
- format: html
|
16285
|
+
name: ${DATE}_${TASK_NAME}.html
|
16286
|
+
recipients:
|
16287
|
+
- estebanldh@gmail.com
|
16288
|
+
- nsimean@despegar.com
|
16289
|
+
- name: checkout.price_difference.pe.oneway
|
16290
|
+
class_name: Henry::Task::CucumberTask
|
16291
|
+
options:
|
16292
|
+
tags:
|
16293
|
+
- checkout
|
16294
|
+
- price_difference
|
16295
|
+
- pe
|
16296
|
+
- oneway
|
16297
|
+
expand: true
|
16298
|
+
no-source: true
|
16299
|
+
reports:
|
16300
|
+
- format: html
|
16301
|
+
name: ${DATE}_${TASK_NAME}.html
|
16302
|
+
recipients:
|
16303
|
+
- estebanldh@gmail.com
|
16304
|
+
- nsimean@despegar.com
|
16305
|
+
- name: checkout.price_difference.pe.multipledestinations
|
16306
|
+
class_name: Henry::Task::CucumberTask
|
16307
|
+
options:
|
16308
|
+
tags:
|
16309
|
+
- checkout
|
16310
|
+
- price_difference
|
16311
|
+
- pe
|
16312
|
+
- multipledestinations
|
16313
|
+
expand: true
|
16314
|
+
no-source: true
|
16315
|
+
reports:
|
16316
|
+
- format: html
|
16317
|
+
name: ${DATE}_${TASK_NAME}.html
|
16318
|
+
recipients:
|
16319
|
+
- estebanldh@gmail.com
|
16320
|
+
- nsimean@despegar.com
|
16321
|
+
- name: checkout.price_difference.co
|
16322
|
+
class_name: Henry::Task::CucumberTask
|
16323
|
+
options:
|
16324
|
+
tags:
|
16325
|
+
- checkout
|
16326
|
+
- price_difference
|
16327
|
+
- co
|
16328
|
+
expand: true
|
16329
|
+
no-source: true
|
16330
|
+
reports:
|
16331
|
+
- format: html
|
16332
|
+
name: ${DATE}_${TASK_NAME}.html
|
16333
|
+
recipients:
|
16334
|
+
- estebanldh@gmail.com
|
16335
|
+
- nsimean@despegar.com
|
16336
|
+
- name: checkout.price_difference.co.roundtrip
|
16337
|
+
class_name: Henry::Task::CucumberTask
|
16338
|
+
options:
|
16339
|
+
tags:
|
16340
|
+
- checkout
|
16341
|
+
- price_difference
|
16342
|
+
- co
|
16343
|
+
- roundtrip
|
16344
|
+
expand: true
|
16345
|
+
no-source: true
|
16346
|
+
reports:
|
16347
|
+
- format: html
|
16348
|
+
name: ${DATE}_${TASK_NAME}.html
|
16349
|
+
recipients:
|
16350
|
+
- estebanldh@gmail.com
|
16351
|
+
- nsimean@despegar.com
|
16352
|
+
- name: checkout.price_difference.co.oneway
|
16353
|
+
class_name: Henry::Task::CucumberTask
|
16354
|
+
options:
|
16355
|
+
tags:
|
16356
|
+
- checkout
|
16357
|
+
- price_difference
|
16358
|
+
- co
|
16359
|
+
- oneway
|
16360
|
+
expand: true
|
16361
|
+
no-source: true
|
16362
|
+
reports:
|
16363
|
+
- format: html
|
16364
|
+
name: ${DATE}_${TASK_NAME}.html
|
16365
|
+
recipients:
|
16366
|
+
- estebanldh@gmail.com
|
16367
|
+
- nsimean@despegar.com
|
16368
|
+
- name: checkout.price_difference.co.multipledestinations
|
16369
|
+
class_name: Henry::Task::CucumberTask
|
16370
|
+
options:
|
16371
|
+
tags:
|
16372
|
+
- checkout
|
16373
|
+
- price_difference
|
16374
|
+
- co
|
16375
|
+
- multipledestinations
|
16376
|
+
expand: true
|
16377
|
+
no-source: true
|
16378
|
+
reports:
|
16379
|
+
- format: html
|
16380
|
+
name: ${DATE}_${TASK_NAME}.html
|
16381
|
+
recipients:
|
16382
|
+
- estebanldh@gmail.com
|
16383
|
+
- nsimean@despegar.com
|
16384
|
+
- name: checkout.price_difference.cr
|
16385
|
+
class_name: Henry::Task::CucumberTask
|
16386
|
+
options:
|
16387
|
+
tags:
|
16388
|
+
- checkout
|
16389
|
+
- price_difference
|
16390
|
+
- cr
|
16391
|
+
expand: true
|
16392
|
+
no-source: true
|
16393
|
+
reports:
|
16394
|
+
- format: html
|
16395
|
+
name: ${DATE}_${TASK_NAME}.html
|
16396
|
+
recipients:
|
16397
|
+
- estebanldh@gmail.com
|
16398
|
+
- nsimean@despegar.com
|
16399
|
+
- name: checkout.price_difference.cr.roundtrip
|
16400
|
+
class_name: Henry::Task::CucumberTask
|
16401
|
+
options:
|
16402
|
+
tags:
|
16403
|
+
- checkout
|
16404
|
+
- price_difference
|
16405
|
+
- cr
|
16406
|
+
- roundtrip
|
16407
|
+
expand: true
|
16408
|
+
no-source: true
|
16409
|
+
reports:
|
16410
|
+
- format: html
|
16411
|
+
name: ${DATE}_${TASK_NAME}.html
|
16412
|
+
recipients:
|
16413
|
+
- estebanldh@gmail.com
|
16414
|
+
- nsimean@despegar.com
|
16415
|
+
- name: checkout.price_difference.cr.oneway
|
16416
|
+
class_name: Henry::Task::CucumberTask
|
16417
|
+
options:
|
16418
|
+
tags:
|
16419
|
+
- checkout
|
16420
|
+
- price_difference
|
16421
|
+
- cr
|
16422
|
+
- oneway
|
16423
|
+
expand: true
|
16424
|
+
no-source: true
|
16425
|
+
reports:
|
16426
|
+
- format: html
|
16427
|
+
name: ${DATE}_${TASK_NAME}.html
|
16428
|
+
recipients:
|
16429
|
+
- estebanldh@gmail.com
|
16430
|
+
- nsimean@despegar.com
|
16431
|
+
- name: checkout.price_difference.cr.multipledestinations
|
16432
|
+
class_name: Henry::Task::CucumberTask
|
16433
|
+
options:
|
16434
|
+
tags:
|
16435
|
+
- checkout
|
16436
|
+
- price_difference
|
16437
|
+
- cr
|
16438
|
+
- multipledestinations
|
16439
|
+
expand: true
|
16440
|
+
no-source: true
|
16441
|
+
reports:
|
16442
|
+
- format: html
|
16443
|
+
name: ${DATE}_${TASK_NAME}.html
|
16444
|
+
recipients:
|
16445
|
+
- estebanldh@gmail.com
|
16446
|
+
- nsimean@despegar.com
|
16447
|
+
- name: checkout.price_difference.ve
|
16448
|
+
class_name: Henry::Task::CucumberTask
|
16449
|
+
options:
|
16450
|
+
tags:
|
16451
|
+
- checkout
|
16452
|
+
- price_difference
|
16453
|
+
- ve
|
16454
|
+
expand: true
|
16455
|
+
no-source: true
|
16456
|
+
reports:
|
16457
|
+
- format: html
|
16458
|
+
name: ${DATE}_${TASK_NAME}.html
|
16459
|
+
recipients:
|
16460
|
+
- estebanldh@gmail.com
|
16461
|
+
- nsimean@despegar.com
|
16462
|
+
- name: checkout.price_difference.ve.roundtrip
|
16463
|
+
class_name: Henry::Task::CucumberTask
|
16464
|
+
options:
|
16465
|
+
tags:
|
16466
|
+
- checkout
|
16467
|
+
- price_difference
|
16468
|
+
- ve
|
16469
|
+
- roundtrip
|
16470
|
+
expand: true
|
16471
|
+
no-source: true
|
16472
|
+
reports:
|
16473
|
+
- format: html
|
16474
|
+
name: ${DATE}_${TASK_NAME}.html
|
16475
|
+
recipients:
|
16476
|
+
- estebanldh@gmail.com
|
16477
|
+
- nsimean@despegar.com
|
16478
|
+
- name: checkout.price_difference.ve.oneway
|
16479
|
+
class_name: Henry::Task::CucumberTask
|
16480
|
+
options:
|
16481
|
+
tags:
|
16482
|
+
- checkout
|
16483
|
+
- price_difference
|
16484
|
+
- ve
|
16485
|
+
- oneway
|
16486
|
+
expand: true
|
16487
|
+
no-source: true
|
16488
|
+
reports:
|
16489
|
+
- format: html
|
16490
|
+
name: ${DATE}_${TASK_NAME}.html
|
16491
|
+
recipients:
|
16492
|
+
- estebanldh@gmail.com
|
16493
|
+
- nsimean@despegar.com
|
16494
|
+
- name: checkout.price_difference.ve.multipledestinations
|
16495
|
+
class_name: Henry::Task::CucumberTask
|
16496
|
+
options:
|
16497
|
+
tags:
|
16498
|
+
- checkout
|
16499
|
+
- price_difference
|
16500
|
+
- ve
|
16501
|
+
- multipledestinations
|
16502
|
+
expand: true
|
16503
|
+
no-source: true
|
16504
|
+
reports:
|
16505
|
+
- format: html
|
16506
|
+
name: ${DATE}_${TASK_NAME}.html
|
16507
|
+
recipients:
|
16508
|
+
- estebanldh@gmail.com
|
16509
|
+
- nsimean@despegar.com
|
16510
|
+
- name: checkout.price_difference.pa
|
16511
|
+
class_name: Henry::Task::CucumberTask
|
16512
|
+
options:
|
16513
|
+
tags:
|
16514
|
+
- checkout
|
16515
|
+
- price_difference
|
16516
|
+
- pa
|
16517
|
+
expand: true
|
16518
|
+
no-source: true
|
16519
|
+
reports:
|
16520
|
+
- format: html
|
16521
|
+
name: ${DATE}_${TASK_NAME}.html
|
16522
|
+
recipients:
|
16523
|
+
- estebanldh@gmail.com
|
16524
|
+
- nsimean@despegar.com
|
16525
|
+
- name: checkout.price_difference.pa.roundtrip
|
16526
|
+
class_name: Henry::Task::CucumberTask
|
16527
|
+
options:
|
16528
|
+
tags:
|
16529
|
+
- checkout
|
16530
|
+
- price_difference
|
16531
|
+
- pa
|
16532
|
+
- roundtrip
|
16533
|
+
expand: true
|
16534
|
+
no-source: true
|
16535
|
+
reports:
|
16536
|
+
- format: html
|
16537
|
+
name: ${DATE}_${TASK_NAME}.html
|
16538
|
+
recipients:
|
16539
|
+
- estebanldh@gmail.com
|
16540
|
+
- nsimean@despegar.com
|
16541
|
+
- name: checkout.price_difference.pa.oneway
|
16542
|
+
class_name: Henry::Task::CucumberTask
|
16543
|
+
options:
|
16544
|
+
tags:
|
16545
|
+
- checkout
|
16546
|
+
- price_difference
|
16547
|
+
- pa
|
16548
|
+
- oneway
|
16549
|
+
expand: true
|
16550
|
+
no-source: true
|
16551
|
+
reports:
|
16552
|
+
- format: html
|
16553
|
+
name: ${DATE}_${TASK_NAME}.html
|
16554
|
+
recipients:
|
16555
|
+
- estebanldh@gmail.com
|
16556
|
+
- nsimean@despegar.com
|
16557
|
+
- name: checkout.price_difference.pa.multipledestinations
|
16558
|
+
class_name: Henry::Task::CucumberTask
|
16559
|
+
options:
|
16560
|
+
tags:
|
16561
|
+
- checkout
|
16562
|
+
- price_difference
|
16563
|
+
- pa
|
16564
|
+
- multipledestinations
|
16565
|
+
expand: true
|
16566
|
+
no-source: true
|
16567
|
+
reports:
|
16568
|
+
- format: html
|
16569
|
+
name: ${DATE}_${TASK_NAME}.html
|
16570
|
+
recipients:
|
16571
|
+
- estebanldh@gmail.com
|
16572
|
+
- nsimean@despegar.com
|
16573
|
+
- name: checkout.price_difference.ec
|
16574
|
+
class_name: Henry::Task::CucumberTask
|
16575
|
+
options:
|
16576
|
+
tags:
|
16577
|
+
- checkout
|
16578
|
+
- price_difference
|
16579
|
+
- ec
|
16580
|
+
expand: true
|
16581
|
+
no-source: true
|
16582
|
+
reports:
|
16583
|
+
- format: html
|
16584
|
+
name: ${DATE}_${TASK_NAME}.html
|
16585
|
+
recipients:
|
16586
|
+
- estebanldh@gmail.com
|
16587
|
+
- nsimean@despegar.com
|
16588
|
+
- name: checkout.price_difference.ec.roundtrip
|
16589
|
+
class_name: Henry::Task::CucumberTask
|
16590
|
+
options:
|
16591
|
+
tags:
|
16592
|
+
- checkout
|
16593
|
+
- price_difference
|
16594
|
+
- ec
|
16595
|
+
- roundtrip
|
16596
|
+
expand: true
|
16597
|
+
no-source: true
|
16598
|
+
reports:
|
16599
|
+
- format: html
|
16600
|
+
name: ${DATE}_${TASK_NAME}.html
|
16601
|
+
recipients:
|
16602
|
+
- estebanldh@gmail.com
|
16603
|
+
- nsimean@despegar.com
|
16604
|
+
- name: checkout.price_difference.ec.oneway
|
16605
|
+
class_name: Henry::Task::CucumberTask
|
16606
|
+
options:
|
16607
|
+
tags:
|
16608
|
+
- checkout
|
16609
|
+
- price_difference
|
16610
|
+
- ec
|
16611
|
+
- oneway
|
16612
|
+
expand: true
|
16613
|
+
no-source: true
|
16614
|
+
reports:
|
16615
|
+
- format: html
|
16616
|
+
name: ${DATE}_${TASK_NAME}.html
|
16617
|
+
recipients:
|
16618
|
+
- estebanldh@gmail.com
|
16619
|
+
- nsimean@despegar.com
|
16620
|
+
- name: checkout.price_difference.ec.multipledestinations
|
16621
|
+
class_name: Henry::Task::CucumberTask
|
16622
|
+
options:
|
16623
|
+
tags:
|
16624
|
+
- checkout
|
16625
|
+
- price_difference
|
16626
|
+
- ec
|
16627
|
+
- multipledestinations
|
16628
|
+
expand: true
|
16629
|
+
no-source: true
|
16630
|
+
reports:
|
16631
|
+
- format: html
|
16632
|
+
name: ${DATE}_${TASK_NAME}.html
|
16633
|
+
recipients:
|
16634
|
+
- estebanldh@gmail.com
|
16635
|
+
- nsimean@despegar.com
|
16636
|
+
- name: checkout.price_difference.cl
|
16637
|
+
class_name: Henry::Task::CucumberTask
|
16638
|
+
options:
|
16639
|
+
tags:
|
16640
|
+
- checkout
|
16641
|
+
- price_difference
|
16642
|
+
- cl
|
16643
|
+
expand: true
|
16644
|
+
no-source: true
|
16645
|
+
reports:
|
16646
|
+
- format: html
|
16647
|
+
name: ${DATE}_${TASK_NAME}.html
|
16648
|
+
recipients:
|
16649
|
+
- estebanldh@gmail.com
|
16650
|
+
- nsimean@despegar.com
|
16651
|
+
- name: checkout.price_difference.cl.roundtrip
|
16652
|
+
class_name: Henry::Task::CucumberTask
|
16653
|
+
options:
|
16654
|
+
tags:
|
16655
|
+
- checkout
|
16656
|
+
- price_difference
|
16657
|
+
- cl
|
16658
|
+
- roundtrip
|
16659
|
+
expand: true
|
16660
|
+
no-source: true
|
16661
|
+
reports:
|
16662
|
+
- format: html
|
16663
|
+
name: ${DATE}_${TASK_NAME}.html
|
16664
|
+
recipients:
|
16665
|
+
- estebanldh@gmail.com
|
16666
|
+
- nsimean@despegar.com
|
16667
|
+
- name: checkout.price_difference.cl.oneway
|
16668
|
+
class_name: Henry::Task::CucumberTask
|
16669
|
+
options:
|
16670
|
+
tags:
|
16671
|
+
- checkout
|
16672
|
+
- price_difference
|
16673
|
+
- cl
|
16674
|
+
- oneway
|
16675
|
+
expand: true
|
16676
|
+
no-source: true
|
16677
|
+
reports:
|
16678
|
+
- format: html
|
16679
|
+
name: ${DATE}_${TASK_NAME}.html
|
16680
|
+
recipients:
|
16681
|
+
- estebanldh@gmail.com
|
16682
|
+
- nsimean@despegar.com
|
16683
|
+
- name: checkout.price_difference.cl.multipledestinations
|
16684
|
+
class_name: Henry::Task::CucumberTask
|
16685
|
+
options:
|
16686
|
+
tags:
|
16687
|
+
- checkout
|
16688
|
+
- price_difference
|
16689
|
+
- cl
|
16690
|
+
- multipledestinations
|
16691
|
+
expand: true
|
16692
|
+
no-source: true
|
16693
|
+
reports:
|
16694
|
+
- format: html
|
16695
|
+
name: ${DATE}_${TASK_NAME}.html
|
16696
|
+
recipients:
|
16697
|
+
- estebanldh@gmail.com
|
16698
|
+
- nsimean@despegar.com
|
16699
|
+
- name: checkout.price_difference.pr
|
16700
|
+
class_name: Henry::Task::CucumberTask
|
16701
|
+
options:
|
16702
|
+
tags:
|
16703
|
+
- checkout
|
16704
|
+
- price_difference
|
16705
|
+
- pr
|
16706
|
+
expand: true
|
16707
|
+
no-source: true
|
16708
|
+
reports:
|
16709
|
+
- format: html
|
16710
|
+
name: ${DATE}_${TASK_NAME}.html
|
16711
|
+
recipients:
|
16712
|
+
- estebanldh@gmail.com
|
16713
|
+
- nsimean@despegar.com
|
16714
|
+
- name: checkout.price_difference.pr.roundtrip
|
16715
|
+
class_name: Henry::Task::CucumberTask
|
16716
|
+
options:
|
16717
|
+
tags:
|
16718
|
+
- checkout
|
16719
|
+
- price_difference
|
16720
|
+
- pr
|
16721
|
+
- roundtrip
|
16722
|
+
expand: true
|
16723
|
+
no-source: true
|
16724
|
+
reports:
|
16725
|
+
- format: html
|
16726
|
+
name: ${DATE}_${TASK_NAME}.html
|
16727
|
+
recipients:
|
16728
|
+
- estebanldh@gmail.com
|
16729
|
+
- nsimean@despegar.com
|
16730
|
+
- name: checkout.price_difference.pr.oneway
|
16731
|
+
class_name: Henry::Task::CucumberTask
|
16732
|
+
options:
|
16733
|
+
tags:
|
16734
|
+
- checkout
|
16735
|
+
- price_difference
|
16736
|
+
- pr
|
16737
|
+
- oneway
|
16738
|
+
expand: true
|
16739
|
+
no-source: true
|
16740
|
+
reports:
|
16741
|
+
- format: html
|
16742
|
+
name: ${DATE}_${TASK_NAME}.html
|
16743
|
+
recipients:
|
16744
|
+
- estebanldh@gmail.com
|
16745
|
+
- nsimean@despegar.com
|
16746
|
+
- name: checkout.price_difference.pr.multipledestinations
|
16747
|
+
class_name: Henry::Task::CucumberTask
|
16748
|
+
options:
|
16749
|
+
tags:
|
16750
|
+
- checkout
|
16751
|
+
- price_difference
|
16752
|
+
- pr
|
16753
|
+
- multipledestinations
|
16754
|
+
expand: true
|
16755
|
+
no-source: true
|
16756
|
+
reports:
|
16757
|
+
- format: html
|
16758
|
+
name: ${DATE}_${TASK_NAME}.html
|
16759
|
+
recipients:
|
16760
|
+
- estebanldh@gmail.com
|
16761
|
+
- nsimean@despegar.com
|
15929
16762
|
- name: checkout.cupones
|
15930
16763
|
class_name: Henry::Task::CucumberTask
|
15931
16764
|
options:
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flights_gui_henry_tests
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lgonzalez,lsimean
|
@@ -251,6 +251,7 @@ files:
|
|
251
251
|
- features/step_definitions/checkout/checkout_steps.rb
|
252
252
|
- features/step_definitions/checkout/error_messages.rb
|
253
253
|
- features/step_definitions/checkout/seguros_steps.rb
|
254
|
+
- features/step_definitions/checkout/price_difference_steps.rb
|
254
255
|
- features/step_definitions/checkout/thanks_steps.rb
|
255
256
|
- features/step_definitions/checkout/chat_steps.rb
|
256
257
|
- features/step_definitions/checkout/agencia_steps.rb
|
@@ -311,6 +312,7 @@ files:
|
|
311
312
|
- features/tests/checkout/error_messages.feature
|
312
313
|
- features/tests/checkout/compras_duplicadas.feature
|
313
314
|
- features/tests/checkout/integration.feature
|
315
|
+
- features/tests/checkout/price_difference.feature
|
314
316
|
- features/tests/checkout/cupones.feature
|
315
317
|
- features/tests/checkout/chat.feature
|
316
318
|
- features/tests/checkout/providers.feature
|