flights_gui_tests 2.3.31 → 2.3.32

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: 7f524f6c65b607ee835073bfd8b2a6f7d2e884d6
4
- data.tar.gz: ac54c8dd45c06abf2dedeb4997f0f56964e6c8a0
3
+ metadata.gz: 5066a4bed9d5683b0a9b0101e155d23dd4bb5a16
4
+ data.tar.gz: 5b687d71010f5133104f962d237ea5f11aeda093
5
5
  SHA512:
6
- metadata.gz: 5a0af25b39a707d319b2c27460a5372d15c425496f19ede306a097266bcaa3b718c8947e97099e7341c8df3219bb966363f4b10e9552f08aa0497bb8cd6f3f82
7
- data.tar.gz: 199668630c1d648a95a1d1d3a88fe3854704105c16cf2e3b840813436b7232f1e2e995f8acdc5dbc6c2fec28aa4ca79845d40ad13a3ff263cb32cbb333c34869
6
+ metadata.gz: 53a48a019f3ab274a5714746a99e5107cca72ad2b3ed23f939c65fbe7e7cdc9700d60c3f76ebbe06257ad1d27b490d98f40c8855b880a63a8571388f4ca3bff8
7
+ data.tar.gz: 7db013c6186860de68986c872b25ca10583b70afc993627bfb772df36930431e069b38742776ee2b55e07d4fe1acf907a9f143b0a159233298687baa3fbc96a3
@@ -1,14 +1,14 @@
1
1
  # encoding: utf-8
2
2
  Cuando(/^aparece el popup de no disponibilidad$/) do
3
+ @page.popup_nuevo_vuelo_element.should visible #si se muestra el popup sigue con el step, sino pasa al siguiente
3
4
  puts "Se mostro el popup de cambio de vuelo"
4
5
  @cambio_vuelo = true
5
- @page.popup_nuevo_vuelo_element.should visible #si se muestra el popup sigue con el step, sino pasa al siguiente
6
6
  @popup_no_disponibilidad_page = @popup_no_disponibilidad_page || Checkout::PopupResultsPage.new($browser)
7
7
  @popup_no_disponibilidad_page.iniciar_apariciones
8
8
  begin
9
9
  @popup_no_disponibilidad_page.itinerario_element.when_visible(timeout=60)
10
10
  rescue Watir::Wait::TimeoutError
11
- pending("No se pudo realizar la compra. #{@page.url}")
11
+ @popup_no_disponibilidad_page.itinerario_element.should visible("itinerarios popup de cambio de vuelos en la pagina #{@page.url}")
12
12
  end
13
13
  end
14
14
 
@@ -57,7 +57,7 @@ Entonces(/^espero que termine el pedido de compra$/) do
57
57
  puts "No se mostro el popup de transicion de compra"
58
58
  end
59
59
  @page.popup_transicion_compra_element.when_not_visible(timeout=200)
60
- Watir::Wait.until(timeout=200){@page.desglose_gracias_element.present? or @page.notificacion_error_cac_element.present? or @page.mensaje_error_ux_element.present? or @page.notificacion_warning_ux_element.present? or @page.checkout_id_cash_element.present? or @page.checkout_id_element.present? or @page.popup_nuevo_vuelo_element.present? or @page.popup_nuevo_precio_element.present? or @page.notificacion_error_element.present? or @page.notificacion_warning_element.present? or @page.notificacion_error_ux_element.present? or @page.mensaje_error_emision_last_minute_element.present?}
60
+ Watir::Wait.until(timeout=200){@page.desglose_gracias_element.present? or @page.notificacion_error_cac_element.present? or @page.mensaje_error_ux_element.present? or @page.notificacion_warning_ux_element.present? or @page.checkout_id_cash_element.present? or @page.checkout_id_element.present? or @page.popup_nuevo_vuelo_element.present? or @page.popup_nuevo_precio_element.present? or @page.notificacion_error_element.present? or @page.notificacion_warning_element.present? or @page.notificacion_error_ux_element.present? or @page.mensaje_error_emision_last_minute_element.present? or @page.mensaje_eva_alerta_element.present?}
61
61
  end
62
62
 
63
63
  Y(/^(?:verifico|valido) si no trae errores$/) do
@@ -68,6 +68,9 @@ Y(/^(?:verifico|valido) si no trae errores$/) do
68
68
  end
69
69
  pending(@page.notificacion_warning_ux_element.text) unless @page.popup_asistencia_al_viajero_element.present? or @page.popup_nuevo_vuelo_element.present? or @page.checkout_id_element.present? or @page.checkout_id_cash_element.present? or @page.notificacion_warning_ux_element.text.downcase.no_accents.match("viaja sin asistencia|viaja sem assistencia")
70
70
  end
71
+ if @page.mensaje_eva_alerta_element.present?
72
+ pending(@page.mensaje_eva_alerta_element.text) if @page.url.match("no-more-flights")
73
+ end
71
74
  if @page.mensaje_error_ux_element.present?
72
75
  pending(@page.mensaje_error_ux_element.text) unless @page.popup_nuevo_vuelo_element.present? or @page.checkout_id_element.present? or @page.checkout_id_cash_element.present?
73
76
  end
@@ -0,0 +1,17 @@
1
+ # -*- encoding : utf-8 -*-
2
+ Entonces(/^abro el popup de cambio de vuelo$/) do
3
+ @page.ir(@page.url.gsub("checkout","checkout/popup"))
4
+ end
5
+
6
+ Y(/^verifico que se muestre el popup de cambio de vuelo$/) do
7
+ @page.popup_nuevo_vuelo_element.should visible #si se muestra el popup sigue con el step, sino pasa al siguiente
8
+ puts "Se mostro el popup de cambio de vuelo"
9
+ @cambio_vuelo = true
10
+ @popup_no_disponibilidad_page = @popup_no_disponibilidad_page || Checkout::PopupResultsPage.new($browser)
11
+ @popup_no_disponibilidad_page.iniciar_apariciones
12
+ begin
13
+ @popup_no_disponibilidad_page.itinerario_element.when_visible(timeout=60)
14
+ rescue Watir::Wait::TimeoutError
15
+ @popup_no_disponibilidad_page.itinerario_element.should visible("itinerarios popup de cambio de vuelos en la pagina #{@page.url}") #{@page.url}")
16
+ end
17
+ end
@@ -19,6 +19,7 @@ module Checkout
19
19
  div(:notificacion_warning,:class=>"notification-box warn-box")
20
20
  div(:notificacion_warning_ux,:class=>"ux-common-message ux-common-message-warning ")
21
21
  div(:mensaje_error_ux,:class=>"ux-common-message ux-common-message-error ")
22
+ div(:mensaje_eva_alerta,:class=>"eva-message-alert ")
22
23
  div(:notificacion_error_ux,:class=>"ux-common-error")
23
24
  div(:boton_si_cambio_precio,:class=>"button-yes")
24
25
  div(:agencia_afiliada,:id=>"agency")
@@ -1,3 +1,3 @@
1
1
  module FlightsGui
2
- VERSION = "2.3.31"
2
+ VERSION = "2.3.32"
3
3
  end
@@ -41,7 +41,6 @@ Característica: checkout.last_minute
41
41
  |pais|tipo|cabotage|origen |destino |
42
42
  |MX |roundtrip|nil|MEX|GDL|
43
43
  |MX |oneway|nil|MEX|SCL|
44
- |MX |multipledestinations|nil|MEX|BUE|
45
44
 
46
45
  @last_minute
47
46
  Esquema del escenario: checkout.last_minute
@@ -0,0 +1,275 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.popup_cambio_vuelo
4
+ Se verifica la correcta carga y funcionamiento de la pagina de checkout, se cargan los datos correctos y se realiza la compra
5
+
6
+ @popup_cambio_vuelo
7
+ Esquema del escenario: Se verifica que se pueda realizar una compra correctamente, validando que los valores a travez del flujo sean correctos y se mantengan a travez del mismo [REGRESION].
8
+ Dado como un usuario de '<pais>'
9
+ * ingreso una busqueda '<tipo>' del tipo '<cabotage>'
10
+ Cuando realizo la busqueda
11
+ Entonces verifico que la pagina no rompa
12
+ Cuando espero que termine de cargar la pagina de resultados
13
+ Entonces verifico que traiga resultados
14
+ Y cierro popups
15
+ Cuando elijo un itinerario y paso a checkout
16
+ Entonces verifico que la pagina no rompa
17
+ Y espero que termine de cargar la pagina de checkout
18
+ Y verifico que ingrese al checkout
19
+ Entonces cargo los pasajeros
20
+ Y cargo los datos de la tarjeta
21
+ Y si el site es "AR|MX|PE|EC", cargo los datos de facturacion
22
+ Y cargo los datos de contacto
23
+ Entonces abro el popup de cambio de vuelo
24
+ Entonces espero que termine el pedido de compra
25
+ Y verifico si no trae errores
26
+ Y verifico que se muestre el popup de cambio de vuelo
27
+ Entonces elijo un itinerario del popup de no disponibilidad
28
+ Y espero que termine de cargar la pagina de checkout
29
+ Y verifico que ingrese al checkout
30
+
31
+ @pt
32
+ @roundtrip
33
+ Ejemplos:
34
+ |pais|tipo|cabotage|
35
+ |PT |roundtrip|nil|
36
+ @pt
37
+ @oneway
38
+ Ejemplos:
39
+ |pais|tipo|cabotage|
40
+ |PT |oneway|true|
41
+ @pt
42
+ @multipledestinations
43
+ Ejemplos:
44
+ |pais|tipo|cabotage|
45
+ |PT |multipledestinations|nil|
46
+ @in
47
+ @roundtrip
48
+ Ejemplos:
49
+ |pais|tipo|cabotage|
50
+ |IN |roundtrip|nil|
51
+ @in
52
+ @oneway
53
+ Ejemplos:
54
+ |pais|tipo|cabotage|
55
+ |IN |oneway|true|
56
+ @in
57
+ @multipledestinations
58
+ Ejemplos:
59
+ |pais|tipo|cabotage|
60
+ |IN |multipledestinations|nil|
61
+ @cn
62
+ @roundtrip
63
+ Ejemplos:
64
+ |pais|tipo|cabotage|
65
+ |CN |roundtrip|nil|
66
+ @cn
67
+ @oneway
68
+ Ejemplos:
69
+ |pais|tipo|cabotage|
70
+ |CN |oneway|true|
71
+ @cn
72
+ @multipledestinations
73
+ Ejemplos:
74
+ |pais|tipo|cabotage|
75
+ |CN |multipledestinations|nil|
76
+ @ar
77
+ @roundtrip
78
+ Ejemplos:
79
+ |pais|tipo|cabotage|
80
+ |AR |roundtrip|nil|
81
+ @ar
82
+ @oneway
83
+ Ejemplos:
84
+ |pais|tipo|cabotage|
85
+ |AR |oneway|true|
86
+ @ar
87
+ @multipledestinations
88
+ Ejemplos:
89
+ |pais|tipo|cabotage|
90
+ |AR |multipledestinations|nil|
91
+ @co
92
+ @roundtrip
93
+ Ejemplos:
94
+ |pais|tipo|cabotage|
95
+ |CO |roundtrip|nil|
96
+ @co
97
+ @oneway
98
+ Ejemplos:
99
+ |pais|tipo|cabotage|
100
+ |CO |oneway|nil|
101
+ @co
102
+ @multipledestinations
103
+ Ejemplos:
104
+ |pais|tipo|cabotage|
105
+ |CO |multipledestinations|nil|
106
+ @cl
107
+ @roundtrip
108
+ Ejemplos:
109
+ |pais|tipo|cabotage|
110
+ |CL |roundtrip|true|
111
+ @cl
112
+ @oneway
113
+ Ejemplos:
114
+ |pais|tipo|cabotage|
115
+ |CL |oneway|nil|
116
+ @cl
117
+ @multipledestinations
118
+ Ejemplos:
119
+ |pais|tipo|cabotage|
120
+ |CL |multipledestinations|nil|
121
+ @cr
122
+ @roundtrip
123
+ Ejemplos:
124
+ |pais|tipo|cabotage|
125
+ |CR |roundtrip|nil|
126
+ @cr
127
+ @oneway
128
+ Ejemplos:
129
+ |pais|tipo|cabotage|
130
+ |CR |oneway|nil|
131
+ @cr
132
+ @multipledestinations
133
+ Ejemplos:
134
+ |pais|tipo|cabotage|
135
+ |CR |multipledestinations|nil|
136
+ @ec
137
+ @roundtrip
138
+ Ejemplos:
139
+ |pais|tipo|cabotage|
140
+ |EC |roundtrip|nil|
141
+ @ec
142
+ @oneway
143
+ Ejemplos:
144
+ |pais|tipo|cabotage|
145
+ |EC |oneway|nil|
146
+ @ec
147
+ @multipledestinations
148
+ Ejemplos:
149
+ |pais|tipo|cabotage|
150
+ |EC |multipledestinations|nil|
151
+ @mx
152
+ @roundtrip
153
+ Ejemplos:
154
+ |pais|tipo|cabotage|
155
+ |MX |roundtrip|nil|
156
+ @mx
157
+ @oneway
158
+ Ejemplos:
159
+ |pais|tipo|cabotage|
160
+ |MX |oneway|nil|
161
+ @mx
162
+ @multipledestinations
163
+ Ejemplos:
164
+ |pais|tipo|cabotage|
165
+ |MX |multipledestinations|nil|
166
+ @pa
167
+ @roundtrip
168
+ Ejemplos:
169
+ |pais|tipo|cabotage|
170
+ |PA |roundtrip|nil|
171
+ @pa
172
+ @oneway
173
+ Ejemplos:
174
+ |pais|tipo|cabotage|
175
+ |PA |oneway|nil|
176
+ @pa
177
+ @multipledestinations
178
+ Ejemplos:
179
+ |pais|tipo|cabotage|
180
+ |PA |multipledestinations|nil|
181
+ @pe
182
+ @roundtrip
183
+ Ejemplos:
184
+ |pais|tipo|cabotage|
185
+ |PE |roundtrip|nil|
186
+ @pe
187
+ @oneway
188
+ Ejemplos:
189
+ |pais|tipo|cabotage|
190
+ |PE |oneway|nil|
191
+ @pe
192
+ @multipledestinations
193
+ Ejemplos:
194
+ |pais|tipo|cabotage|
195
+ |PE |multipledestinations|nil|
196
+ @us
197
+ @roundtrip
198
+ Ejemplos:
199
+ |pais|tipo|cabotage|
200
+ |US |roundtrip|nil|
201
+ @us
202
+ @oneway
203
+ Ejemplos:
204
+ |pais|tipo|cabotage|
205
+ |US |oneway|nil|
206
+ @us
207
+ @multipledestinations
208
+ Ejemplos:
209
+ |pais|tipo|cabotage|
210
+ |US |multipledestinations|nil|
211
+ @uy
212
+ @roundtrip
213
+ Ejemplos:
214
+ |pais|tipo|cabotage|
215
+ |UY |roundtrip|nil|
216
+ @uy
217
+ @oneway
218
+ Ejemplos:
219
+ |pais|tipo|cabotage|
220
+ |UY |oneway|nil|
221
+ @uy
222
+ @multipledestinations
223
+ Ejemplos:
224
+ |pais|tipo|cabotage|
225
+ |UY |multipledestinations|nil|
226
+ @ve
227
+ @roundtrip
228
+ Ejemplos:
229
+ |pais|tipo|cabotage|
230
+ |VE |roundtrip|true|
231
+ @ve
232
+ @oneway
233
+ Ejemplos:
234
+ |pais|tipo|cabotage|
235
+ |VE |oneway|true|
236
+
237
+ @popup_cambio_vuelo
238
+ Esquema del escenario: Se verifica que se pueda realizar una compra correctamente, validando que los valores a travez del flujo sean correctos y se mantengan a travez del mismo [REGRESION].
239
+ Dado como un usuario de '<pais>'
240
+ * ingreso una busqueda '<tipo>' del tipo '<cabotage>'
241
+ Cuando realizo la busqueda
242
+ Entonces verifico que la pagina no rompa
243
+ Cuando espero que termine de cargar la pagina de resultados
244
+ Entonces verifico que traiga resultados
245
+ Cuando elijo un itinerario y paso a checkout
246
+ Entonces verifico que la pagina no rompa
247
+ Y espero que termine de cargar la pagina de checkout
248
+ Y verifico que ingrese al checkout
249
+ Entonces cargo los pasajeros
250
+ Y cargo los datos de la tarjeta en el nuevo formulario
251
+ Y si el site es "AR|MX|PE|BR", cargo los datos de facturacion
252
+ Y cargo los datos de contacto
253
+ Entonces abro el popup de cambio de vuelo
254
+ Entonces espero que termine el pedido de compra
255
+ Y verifico si no trae errores
256
+ Y verifico que se muestre el popup de cambio de vuelo
257
+ Entonces elijo un itinerario del popup de no disponibilidad
258
+ Y espero que termine de cargar la pagina de checkout
259
+ Y verifico que ingrese al checkout
260
+
261
+ @br
262
+ @roundtrip
263
+ Ejemplos:
264
+ |pais|tipo|cabotage|
265
+ |BR |roundtrip|nil|
266
+ @br
267
+ @oneway
268
+ Ejemplos:
269
+ |pais|tipo|cabotage|
270
+ |BR |oneway|true|
271
+ @br
272
+ @multipledestinations
273
+ Ejemplos:
274
+ |pais|tipo|cabotage|
275
+ |BR |multipledestinations|nil|
@@ -1,4 +1,49 @@
1
1
  tasks:
2
+ - name: results.multipleoneway
3
+ class_name: Henry::Task::CucumberTask
4
+ options:
5
+ tags:
6
+ - results
7
+ - multipleoneway
8
+ expand: true
9
+ no-source: true
10
+ reports:
11
+ - format: html
12
+ name: ${DATE}_${TASK_NAME}.html
13
+ recipients:
14
+ - estebanldh@gmail.com
15
+ - nsimean@despegar.com
16
+ - name: results.multipleoneway.br
17
+ class_name: Henry::Task::CucumberTask
18
+ options:
19
+ tags:
20
+ - results
21
+ - multipleoneway
22
+ - br
23
+ expand: true
24
+ no-source: true
25
+ reports:
26
+ - format: html
27
+ name: ${DATE}_${TASK_NAME}.html
28
+ recipients:
29
+ - estebanldh@gmail.com
30
+ - nsimean@despegar.com
31
+ - name: results.multipleoneway.br.multipleoneway
32
+ class_name: Henry::Task::CucumberTask
33
+ options:
34
+ tags:
35
+ - results
36
+ - multipleoneway
37
+ - br
38
+ - multipleoneway
39
+ expand: true
40
+ no-source: true
41
+ reports:
42
+ - format: html
43
+ name: ${DATE}_${TASK_NAME}.html
44
+ recipients:
45
+ - estebanldh@gmail.com
46
+ - nsimean@despegar.com
2
47
  - name: results.search
3
48
  class_name: Henry::Task::CucumberTask
4
49
  options:
@@ -2528,51 +2573,6 @@ tasks:
2528
2573
  recipients:
2529
2574
  - estebanldh@gmail.com
2530
2575
  - nsimean@despegar.com
2531
- - name: results.multipleoneway
2532
- class_name: Henry::Task::CucumberTask
2533
- options:
2534
- tags:
2535
- - results
2536
- - multipleoneway
2537
- expand: true
2538
- no-source: true
2539
- reports:
2540
- - format: html
2541
- name: ${DATE}_${TASK_NAME}.html
2542
- recipients:
2543
- - estebanldh@gmail.com
2544
- - nsimean@despegar.com
2545
- - name: results.multipleoneway.pe
2546
- class_name: Henry::Task::CucumberTask
2547
- options:
2548
- tags:
2549
- - results
2550
- - multipleoneway
2551
- - pe
2552
- expand: true
2553
- no-source: true
2554
- reports:
2555
- - format: html
2556
- name: ${DATE}_${TASK_NAME}.html
2557
- recipients:
2558
- - estebanldh@gmail.com
2559
- - nsimean@despegar.com
2560
- - name: results.multipleoneway.pe.roundtrip
2561
- class_name: Henry::Task::CucumberTask
2562
- options:
2563
- tags:
2564
- - results
2565
- - multipleoneway
2566
- - pe
2567
- - roundtrip
2568
- expand: true
2569
- no-source: true
2570
- reports:
2571
- - format: html
2572
- name: ${DATE}_${TASK_NAME}.html
2573
- recipients:
2574
- - estebanldh@gmail.com
2575
- - nsimean@despegar.com
2576
2576
  - name: results.itineraries
2577
2577
  class_name: Henry::Task::CucumberTask
2578
2578
  options:
@@ -14207,6 +14207,949 @@ tasks:
14207
14207
  recipients:
14208
14208
  - estebanldh@gmail.com
14209
14209
  - nsimean@despegar.com
14210
+ - name: checkout.popup_cambio_vuelo
14211
+ class_name: Henry::Task::CucumberTask
14212
+ options:
14213
+ tags:
14214
+ - checkout
14215
+ - popup_cambio_vuelo
14216
+ expand: true
14217
+ no-source: true
14218
+ reports:
14219
+ - format: html
14220
+ name: ${DATE}_${TASK_NAME}.html
14221
+ recipients:
14222
+ - estebanldh@gmail.com
14223
+ - nsimean@despegar.com
14224
+ - name: checkout.popup_cambio_vuelo.pt
14225
+ class_name: Henry::Task::CucumberTask
14226
+ options:
14227
+ tags:
14228
+ - checkout
14229
+ - popup_cambio_vuelo
14230
+ - pt
14231
+ expand: true
14232
+ no-source: true
14233
+ reports:
14234
+ - format: html
14235
+ name: ${DATE}_${TASK_NAME}.html
14236
+ recipients:
14237
+ - estebanldh@gmail.com
14238
+ - nsimean@despegar.com
14239
+ - name: checkout.popup_cambio_vuelo.pt.roundtrip
14240
+ class_name: Henry::Task::CucumberTask
14241
+ options:
14242
+ tags:
14243
+ - checkout
14244
+ - popup_cambio_vuelo
14245
+ - pt
14246
+ - roundtrip
14247
+ expand: true
14248
+ no-source: true
14249
+ reports:
14250
+ - format: html
14251
+ name: ${DATE}_${TASK_NAME}.html
14252
+ recipients:
14253
+ - estebanldh@gmail.com
14254
+ - nsimean@despegar.com
14255
+ - name: checkout.popup_cambio_vuelo.pt.oneway
14256
+ class_name: Henry::Task::CucumberTask
14257
+ options:
14258
+ tags:
14259
+ - checkout
14260
+ - popup_cambio_vuelo
14261
+ - pt
14262
+ - oneway
14263
+ expand: true
14264
+ no-source: true
14265
+ reports:
14266
+ - format: html
14267
+ name: ${DATE}_${TASK_NAME}.html
14268
+ recipients:
14269
+ - estebanldh@gmail.com
14270
+ - nsimean@despegar.com
14271
+ - name: checkout.popup_cambio_vuelo.pt.multipledestinations
14272
+ class_name: Henry::Task::CucumberTask
14273
+ options:
14274
+ tags:
14275
+ - checkout
14276
+ - popup_cambio_vuelo
14277
+ - pt
14278
+ - multipledestinations
14279
+ expand: true
14280
+ no-source: true
14281
+ reports:
14282
+ - format: html
14283
+ name: ${DATE}_${TASK_NAME}.html
14284
+ recipients:
14285
+ - estebanldh@gmail.com
14286
+ - nsimean@despegar.com
14287
+ - name: checkout.popup_cambio_vuelo.in
14288
+ class_name: Henry::Task::CucumberTask
14289
+ options:
14290
+ tags:
14291
+ - checkout
14292
+ - popup_cambio_vuelo
14293
+ - in
14294
+ expand: true
14295
+ no-source: true
14296
+ reports:
14297
+ - format: html
14298
+ name: ${DATE}_${TASK_NAME}.html
14299
+ recipients:
14300
+ - estebanldh@gmail.com
14301
+ - nsimean@despegar.com
14302
+ - name: checkout.popup_cambio_vuelo.in.roundtrip
14303
+ class_name: Henry::Task::CucumberTask
14304
+ options:
14305
+ tags:
14306
+ - checkout
14307
+ - popup_cambio_vuelo
14308
+ - in
14309
+ - roundtrip
14310
+ expand: true
14311
+ no-source: true
14312
+ reports:
14313
+ - format: html
14314
+ name: ${DATE}_${TASK_NAME}.html
14315
+ recipients:
14316
+ - estebanldh@gmail.com
14317
+ - nsimean@despegar.com
14318
+ - name: checkout.popup_cambio_vuelo.in.oneway
14319
+ class_name: Henry::Task::CucumberTask
14320
+ options:
14321
+ tags:
14322
+ - checkout
14323
+ - popup_cambio_vuelo
14324
+ - in
14325
+ - oneway
14326
+ expand: true
14327
+ no-source: true
14328
+ reports:
14329
+ - format: html
14330
+ name: ${DATE}_${TASK_NAME}.html
14331
+ recipients:
14332
+ - estebanldh@gmail.com
14333
+ - nsimean@despegar.com
14334
+ - name: checkout.popup_cambio_vuelo.in.multipledestinations
14335
+ class_name: Henry::Task::CucumberTask
14336
+ options:
14337
+ tags:
14338
+ - checkout
14339
+ - popup_cambio_vuelo
14340
+ - in
14341
+ - multipledestinations
14342
+ expand: true
14343
+ no-source: true
14344
+ reports:
14345
+ - format: html
14346
+ name: ${DATE}_${TASK_NAME}.html
14347
+ recipients:
14348
+ - estebanldh@gmail.com
14349
+ - nsimean@despegar.com
14350
+ - name: checkout.popup_cambio_vuelo.cn
14351
+ class_name: Henry::Task::CucumberTask
14352
+ options:
14353
+ tags:
14354
+ - checkout
14355
+ - popup_cambio_vuelo
14356
+ - cn
14357
+ expand: true
14358
+ no-source: true
14359
+ reports:
14360
+ - format: html
14361
+ name: ${DATE}_${TASK_NAME}.html
14362
+ recipients:
14363
+ - estebanldh@gmail.com
14364
+ - nsimean@despegar.com
14365
+ - name: checkout.popup_cambio_vuelo.cn.roundtrip
14366
+ class_name: Henry::Task::CucumberTask
14367
+ options:
14368
+ tags:
14369
+ - checkout
14370
+ - popup_cambio_vuelo
14371
+ - cn
14372
+ - roundtrip
14373
+ expand: true
14374
+ no-source: true
14375
+ reports:
14376
+ - format: html
14377
+ name: ${DATE}_${TASK_NAME}.html
14378
+ recipients:
14379
+ - estebanldh@gmail.com
14380
+ - nsimean@despegar.com
14381
+ - name: checkout.popup_cambio_vuelo.cn.oneway
14382
+ class_name: Henry::Task::CucumberTask
14383
+ options:
14384
+ tags:
14385
+ - checkout
14386
+ - popup_cambio_vuelo
14387
+ - cn
14388
+ - oneway
14389
+ expand: true
14390
+ no-source: true
14391
+ reports:
14392
+ - format: html
14393
+ name: ${DATE}_${TASK_NAME}.html
14394
+ recipients:
14395
+ - estebanldh@gmail.com
14396
+ - nsimean@despegar.com
14397
+ - name: checkout.popup_cambio_vuelo.cn.multipledestinations
14398
+ class_name: Henry::Task::CucumberTask
14399
+ options:
14400
+ tags:
14401
+ - checkout
14402
+ - popup_cambio_vuelo
14403
+ - cn
14404
+ - multipledestinations
14405
+ expand: true
14406
+ no-source: true
14407
+ reports:
14408
+ - format: html
14409
+ name: ${DATE}_${TASK_NAME}.html
14410
+ recipients:
14411
+ - estebanldh@gmail.com
14412
+ - nsimean@despegar.com
14413
+ - name: checkout.popup_cambio_vuelo.ar
14414
+ class_name: Henry::Task::CucumberTask
14415
+ options:
14416
+ tags:
14417
+ - checkout
14418
+ - popup_cambio_vuelo
14419
+ - ar
14420
+ expand: true
14421
+ no-source: true
14422
+ reports:
14423
+ - format: html
14424
+ name: ${DATE}_${TASK_NAME}.html
14425
+ recipients:
14426
+ - estebanldh@gmail.com
14427
+ - nsimean@despegar.com
14428
+ - name: checkout.popup_cambio_vuelo.ar.roundtrip
14429
+ class_name: Henry::Task::CucumberTask
14430
+ options:
14431
+ tags:
14432
+ - checkout
14433
+ - popup_cambio_vuelo
14434
+ - ar
14435
+ - roundtrip
14436
+ expand: true
14437
+ no-source: true
14438
+ reports:
14439
+ - format: html
14440
+ name: ${DATE}_${TASK_NAME}.html
14441
+ recipients:
14442
+ - estebanldh@gmail.com
14443
+ - nsimean@despegar.com
14444
+ - name: checkout.popup_cambio_vuelo.ar.oneway
14445
+ class_name: Henry::Task::CucumberTask
14446
+ options:
14447
+ tags:
14448
+ - checkout
14449
+ - popup_cambio_vuelo
14450
+ - ar
14451
+ - oneway
14452
+ expand: true
14453
+ no-source: true
14454
+ reports:
14455
+ - format: html
14456
+ name: ${DATE}_${TASK_NAME}.html
14457
+ recipients:
14458
+ - estebanldh@gmail.com
14459
+ - nsimean@despegar.com
14460
+ - name: checkout.popup_cambio_vuelo.ar.multipledestinations
14461
+ class_name: Henry::Task::CucumberTask
14462
+ options:
14463
+ tags:
14464
+ - checkout
14465
+ - popup_cambio_vuelo
14466
+ - ar
14467
+ - multipledestinations
14468
+ expand: true
14469
+ no-source: true
14470
+ reports:
14471
+ - format: html
14472
+ name: ${DATE}_${TASK_NAME}.html
14473
+ recipients:
14474
+ - estebanldh@gmail.com
14475
+ - nsimean@despegar.com
14476
+ - name: checkout.popup_cambio_vuelo.co
14477
+ class_name: Henry::Task::CucumberTask
14478
+ options:
14479
+ tags:
14480
+ - checkout
14481
+ - popup_cambio_vuelo
14482
+ - co
14483
+ expand: true
14484
+ no-source: true
14485
+ reports:
14486
+ - format: html
14487
+ name: ${DATE}_${TASK_NAME}.html
14488
+ recipients:
14489
+ - estebanldh@gmail.com
14490
+ - nsimean@despegar.com
14491
+ - name: checkout.popup_cambio_vuelo.co.roundtrip
14492
+ class_name: Henry::Task::CucumberTask
14493
+ options:
14494
+ tags:
14495
+ - checkout
14496
+ - popup_cambio_vuelo
14497
+ - co
14498
+ - roundtrip
14499
+ expand: true
14500
+ no-source: true
14501
+ reports:
14502
+ - format: html
14503
+ name: ${DATE}_${TASK_NAME}.html
14504
+ recipients:
14505
+ - estebanldh@gmail.com
14506
+ - nsimean@despegar.com
14507
+ - name: checkout.popup_cambio_vuelo.co.oneway
14508
+ class_name: Henry::Task::CucumberTask
14509
+ options:
14510
+ tags:
14511
+ - checkout
14512
+ - popup_cambio_vuelo
14513
+ - co
14514
+ - oneway
14515
+ expand: true
14516
+ no-source: true
14517
+ reports:
14518
+ - format: html
14519
+ name: ${DATE}_${TASK_NAME}.html
14520
+ recipients:
14521
+ - estebanldh@gmail.com
14522
+ - nsimean@despegar.com
14523
+ - name: checkout.popup_cambio_vuelo.co.multipledestinations
14524
+ class_name: Henry::Task::CucumberTask
14525
+ options:
14526
+ tags:
14527
+ - checkout
14528
+ - popup_cambio_vuelo
14529
+ - co
14530
+ - multipledestinations
14531
+ expand: true
14532
+ no-source: true
14533
+ reports:
14534
+ - format: html
14535
+ name: ${DATE}_${TASK_NAME}.html
14536
+ recipients:
14537
+ - estebanldh@gmail.com
14538
+ - nsimean@despegar.com
14539
+ - name: checkout.popup_cambio_vuelo.cl
14540
+ class_name: Henry::Task::CucumberTask
14541
+ options:
14542
+ tags:
14543
+ - checkout
14544
+ - popup_cambio_vuelo
14545
+ - cl
14546
+ expand: true
14547
+ no-source: true
14548
+ reports:
14549
+ - format: html
14550
+ name: ${DATE}_${TASK_NAME}.html
14551
+ recipients:
14552
+ - estebanldh@gmail.com
14553
+ - nsimean@despegar.com
14554
+ - name: checkout.popup_cambio_vuelo.cl.roundtrip
14555
+ class_name: Henry::Task::CucumberTask
14556
+ options:
14557
+ tags:
14558
+ - checkout
14559
+ - popup_cambio_vuelo
14560
+ - cl
14561
+ - roundtrip
14562
+ expand: true
14563
+ no-source: true
14564
+ reports:
14565
+ - format: html
14566
+ name: ${DATE}_${TASK_NAME}.html
14567
+ recipients:
14568
+ - estebanldh@gmail.com
14569
+ - nsimean@despegar.com
14570
+ - name: checkout.popup_cambio_vuelo.cl.oneway
14571
+ class_name: Henry::Task::CucumberTask
14572
+ options:
14573
+ tags:
14574
+ - checkout
14575
+ - popup_cambio_vuelo
14576
+ - cl
14577
+ - oneway
14578
+ expand: true
14579
+ no-source: true
14580
+ reports:
14581
+ - format: html
14582
+ name: ${DATE}_${TASK_NAME}.html
14583
+ recipients:
14584
+ - estebanldh@gmail.com
14585
+ - nsimean@despegar.com
14586
+ - name: checkout.popup_cambio_vuelo.cl.multipledestinations
14587
+ class_name: Henry::Task::CucumberTask
14588
+ options:
14589
+ tags:
14590
+ - checkout
14591
+ - popup_cambio_vuelo
14592
+ - cl
14593
+ - multipledestinations
14594
+ expand: true
14595
+ no-source: true
14596
+ reports:
14597
+ - format: html
14598
+ name: ${DATE}_${TASK_NAME}.html
14599
+ recipients:
14600
+ - estebanldh@gmail.com
14601
+ - nsimean@despegar.com
14602
+ - name: checkout.popup_cambio_vuelo.cr
14603
+ class_name: Henry::Task::CucumberTask
14604
+ options:
14605
+ tags:
14606
+ - checkout
14607
+ - popup_cambio_vuelo
14608
+ - cr
14609
+ expand: true
14610
+ no-source: true
14611
+ reports:
14612
+ - format: html
14613
+ name: ${DATE}_${TASK_NAME}.html
14614
+ recipients:
14615
+ - estebanldh@gmail.com
14616
+ - nsimean@despegar.com
14617
+ - name: checkout.popup_cambio_vuelo.cr.roundtrip
14618
+ class_name: Henry::Task::CucumberTask
14619
+ options:
14620
+ tags:
14621
+ - checkout
14622
+ - popup_cambio_vuelo
14623
+ - cr
14624
+ - roundtrip
14625
+ expand: true
14626
+ no-source: true
14627
+ reports:
14628
+ - format: html
14629
+ name: ${DATE}_${TASK_NAME}.html
14630
+ recipients:
14631
+ - estebanldh@gmail.com
14632
+ - nsimean@despegar.com
14633
+ - name: checkout.popup_cambio_vuelo.cr.oneway
14634
+ class_name: Henry::Task::CucumberTask
14635
+ options:
14636
+ tags:
14637
+ - checkout
14638
+ - popup_cambio_vuelo
14639
+ - cr
14640
+ - oneway
14641
+ expand: true
14642
+ no-source: true
14643
+ reports:
14644
+ - format: html
14645
+ name: ${DATE}_${TASK_NAME}.html
14646
+ recipients:
14647
+ - estebanldh@gmail.com
14648
+ - nsimean@despegar.com
14649
+ - name: checkout.popup_cambio_vuelo.cr.multipledestinations
14650
+ class_name: Henry::Task::CucumberTask
14651
+ options:
14652
+ tags:
14653
+ - checkout
14654
+ - popup_cambio_vuelo
14655
+ - cr
14656
+ - multipledestinations
14657
+ expand: true
14658
+ no-source: true
14659
+ reports:
14660
+ - format: html
14661
+ name: ${DATE}_${TASK_NAME}.html
14662
+ recipients:
14663
+ - estebanldh@gmail.com
14664
+ - nsimean@despegar.com
14665
+ - name: checkout.popup_cambio_vuelo.ec
14666
+ class_name: Henry::Task::CucumberTask
14667
+ options:
14668
+ tags:
14669
+ - checkout
14670
+ - popup_cambio_vuelo
14671
+ - ec
14672
+ expand: true
14673
+ no-source: true
14674
+ reports:
14675
+ - format: html
14676
+ name: ${DATE}_${TASK_NAME}.html
14677
+ recipients:
14678
+ - estebanldh@gmail.com
14679
+ - nsimean@despegar.com
14680
+ - name: checkout.popup_cambio_vuelo.ec.roundtrip
14681
+ class_name: Henry::Task::CucumberTask
14682
+ options:
14683
+ tags:
14684
+ - checkout
14685
+ - popup_cambio_vuelo
14686
+ - ec
14687
+ - roundtrip
14688
+ expand: true
14689
+ no-source: true
14690
+ reports:
14691
+ - format: html
14692
+ name: ${DATE}_${TASK_NAME}.html
14693
+ recipients:
14694
+ - estebanldh@gmail.com
14695
+ - nsimean@despegar.com
14696
+ - name: checkout.popup_cambio_vuelo.ec.oneway
14697
+ class_name: Henry::Task::CucumberTask
14698
+ options:
14699
+ tags:
14700
+ - checkout
14701
+ - popup_cambio_vuelo
14702
+ - ec
14703
+ - oneway
14704
+ expand: true
14705
+ no-source: true
14706
+ reports:
14707
+ - format: html
14708
+ name: ${DATE}_${TASK_NAME}.html
14709
+ recipients:
14710
+ - estebanldh@gmail.com
14711
+ - nsimean@despegar.com
14712
+ - name: checkout.popup_cambio_vuelo.ec.multipledestinations
14713
+ class_name: Henry::Task::CucumberTask
14714
+ options:
14715
+ tags:
14716
+ - checkout
14717
+ - popup_cambio_vuelo
14718
+ - ec
14719
+ - multipledestinations
14720
+ expand: true
14721
+ no-source: true
14722
+ reports:
14723
+ - format: html
14724
+ name: ${DATE}_${TASK_NAME}.html
14725
+ recipients:
14726
+ - estebanldh@gmail.com
14727
+ - nsimean@despegar.com
14728
+ - name: checkout.popup_cambio_vuelo.mx
14729
+ class_name: Henry::Task::CucumberTask
14730
+ options:
14731
+ tags:
14732
+ - checkout
14733
+ - popup_cambio_vuelo
14734
+ - mx
14735
+ expand: true
14736
+ no-source: true
14737
+ reports:
14738
+ - format: html
14739
+ name: ${DATE}_${TASK_NAME}.html
14740
+ recipients:
14741
+ - estebanldh@gmail.com
14742
+ - nsimean@despegar.com
14743
+ - name: checkout.popup_cambio_vuelo.mx.roundtrip
14744
+ class_name: Henry::Task::CucumberTask
14745
+ options:
14746
+ tags:
14747
+ - checkout
14748
+ - popup_cambio_vuelo
14749
+ - mx
14750
+ - roundtrip
14751
+ expand: true
14752
+ no-source: true
14753
+ reports:
14754
+ - format: html
14755
+ name: ${DATE}_${TASK_NAME}.html
14756
+ recipients:
14757
+ - estebanldh@gmail.com
14758
+ - nsimean@despegar.com
14759
+ - name: checkout.popup_cambio_vuelo.mx.oneway
14760
+ class_name: Henry::Task::CucumberTask
14761
+ options:
14762
+ tags:
14763
+ - checkout
14764
+ - popup_cambio_vuelo
14765
+ - mx
14766
+ - oneway
14767
+ expand: true
14768
+ no-source: true
14769
+ reports:
14770
+ - format: html
14771
+ name: ${DATE}_${TASK_NAME}.html
14772
+ recipients:
14773
+ - estebanldh@gmail.com
14774
+ - nsimean@despegar.com
14775
+ - name: checkout.popup_cambio_vuelo.mx.multipledestinations
14776
+ class_name: Henry::Task::CucumberTask
14777
+ options:
14778
+ tags:
14779
+ - checkout
14780
+ - popup_cambio_vuelo
14781
+ - mx
14782
+ - multipledestinations
14783
+ expand: true
14784
+ no-source: true
14785
+ reports:
14786
+ - format: html
14787
+ name: ${DATE}_${TASK_NAME}.html
14788
+ recipients:
14789
+ - estebanldh@gmail.com
14790
+ - nsimean@despegar.com
14791
+ - name: checkout.popup_cambio_vuelo.pa
14792
+ class_name: Henry::Task::CucumberTask
14793
+ options:
14794
+ tags:
14795
+ - checkout
14796
+ - popup_cambio_vuelo
14797
+ - pa
14798
+ expand: true
14799
+ no-source: true
14800
+ reports:
14801
+ - format: html
14802
+ name: ${DATE}_${TASK_NAME}.html
14803
+ recipients:
14804
+ - estebanldh@gmail.com
14805
+ - nsimean@despegar.com
14806
+ - name: checkout.popup_cambio_vuelo.pa.roundtrip
14807
+ class_name: Henry::Task::CucumberTask
14808
+ options:
14809
+ tags:
14810
+ - checkout
14811
+ - popup_cambio_vuelo
14812
+ - pa
14813
+ - roundtrip
14814
+ expand: true
14815
+ no-source: true
14816
+ reports:
14817
+ - format: html
14818
+ name: ${DATE}_${TASK_NAME}.html
14819
+ recipients:
14820
+ - estebanldh@gmail.com
14821
+ - nsimean@despegar.com
14822
+ - name: checkout.popup_cambio_vuelo.pa.oneway
14823
+ class_name: Henry::Task::CucumberTask
14824
+ options:
14825
+ tags:
14826
+ - checkout
14827
+ - popup_cambio_vuelo
14828
+ - pa
14829
+ - oneway
14830
+ expand: true
14831
+ no-source: true
14832
+ reports:
14833
+ - format: html
14834
+ name: ${DATE}_${TASK_NAME}.html
14835
+ recipients:
14836
+ - estebanldh@gmail.com
14837
+ - nsimean@despegar.com
14838
+ - name: checkout.popup_cambio_vuelo.pa.multipledestinations
14839
+ class_name: Henry::Task::CucumberTask
14840
+ options:
14841
+ tags:
14842
+ - checkout
14843
+ - popup_cambio_vuelo
14844
+ - pa
14845
+ - multipledestinations
14846
+ expand: true
14847
+ no-source: true
14848
+ reports:
14849
+ - format: html
14850
+ name: ${DATE}_${TASK_NAME}.html
14851
+ recipients:
14852
+ - estebanldh@gmail.com
14853
+ - nsimean@despegar.com
14854
+ - name: checkout.popup_cambio_vuelo.pe
14855
+ class_name: Henry::Task::CucumberTask
14856
+ options:
14857
+ tags:
14858
+ - checkout
14859
+ - popup_cambio_vuelo
14860
+ - pe
14861
+ expand: true
14862
+ no-source: true
14863
+ reports:
14864
+ - format: html
14865
+ name: ${DATE}_${TASK_NAME}.html
14866
+ recipients:
14867
+ - estebanldh@gmail.com
14868
+ - nsimean@despegar.com
14869
+ - name: checkout.popup_cambio_vuelo.pe.roundtrip
14870
+ class_name: Henry::Task::CucumberTask
14871
+ options:
14872
+ tags:
14873
+ - checkout
14874
+ - popup_cambio_vuelo
14875
+ - pe
14876
+ - roundtrip
14877
+ expand: true
14878
+ no-source: true
14879
+ reports:
14880
+ - format: html
14881
+ name: ${DATE}_${TASK_NAME}.html
14882
+ recipients:
14883
+ - estebanldh@gmail.com
14884
+ - nsimean@despegar.com
14885
+ - name: checkout.popup_cambio_vuelo.pe.oneway
14886
+ class_name: Henry::Task::CucumberTask
14887
+ options:
14888
+ tags:
14889
+ - checkout
14890
+ - popup_cambio_vuelo
14891
+ - pe
14892
+ - oneway
14893
+ expand: true
14894
+ no-source: true
14895
+ reports:
14896
+ - format: html
14897
+ name: ${DATE}_${TASK_NAME}.html
14898
+ recipients:
14899
+ - estebanldh@gmail.com
14900
+ - nsimean@despegar.com
14901
+ - name: checkout.popup_cambio_vuelo.pe.multipledestinations
14902
+ class_name: Henry::Task::CucumberTask
14903
+ options:
14904
+ tags:
14905
+ - checkout
14906
+ - popup_cambio_vuelo
14907
+ - pe
14908
+ - multipledestinations
14909
+ expand: true
14910
+ no-source: true
14911
+ reports:
14912
+ - format: html
14913
+ name: ${DATE}_${TASK_NAME}.html
14914
+ recipients:
14915
+ - estebanldh@gmail.com
14916
+ - nsimean@despegar.com
14917
+ - name: checkout.popup_cambio_vuelo.us
14918
+ class_name: Henry::Task::CucumberTask
14919
+ options:
14920
+ tags:
14921
+ - checkout
14922
+ - popup_cambio_vuelo
14923
+ - us
14924
+ expand: true
14925
+ no-source: true
14926
+ reports:
14927
+ - format: html
14928
+ name: ${DATE}_${TASK_NAME}.html
14929
+ recipients:
14930
+ - estebanldh@gmail.com
14931
+ - nsimean@despegar.com
14932
+ - name: checkout.popup_cambio_vuelo.us.roundtrip
14933
+ class_name: Henry::Task::CucumberTask
14934
+ options:
14935
+ tags:
14936
+ - checkout
14937
+ - popup_cambio_vuelo
14938
+ - us
14939
+ - roundtrip
14940
+ expand: true
14941
+ no-source: true
14942
+ reports:
14943
+ - format: html
14944
+ name: ${DATE}_${TASK_NAME}.html
14945
+ recipients:
14946
+ - estebanldh@gmail.com
14947
+ - nsimean@despegar.com
14948
+ - name: checkout.popup_cambio_vuelo.us.oneway
14949
+ class_name: Henry::Task::CucumberTask
14950
+ options:
14951
+ tags:
14952
+ - checkout
14953
+ - popup_cambio_vuelo
14954
+ - us
14955
+ - oneway
14956
+ expand: true
14957
+ no-source: true
14958
+ reports:
14959
+ - format: html
14960
+ name: ${DATE}_${TASK_NAME}.html
14961
+ recipients:
14962
+ - estebanldh@gmail.com
14963
+ - nsimean@despegar.com
14964
+ - name: checkout.popup_cambio_vuelo.us.multipledestinations
14965
+ class_name: Henry::Task::CucumberTask
14966
+ options:
14967
+ tags:
14968
+ - checkout
14969
+ - popup_cambio_vuelo
14970
+ - us
14971
+ - multipledestinations
14972
+ expand: true
14973
+ no-source: true
14974
+ reports:
14975
+ - format: html
14976
+ name: ${DATE}_${TASK_NAME}.html
14977
+ recipients:
14978
+ - estebanldh@gmail.com
14979
+ - nsimean@despegar.com
14980
+ - name: checkout.popup_cambio_vuelo.uy
14981
+ class_name: Henry::Task::CucumberTask
14982
+ options:
14983
+ tags:
14984
+ - checkout
14985
+ - popup_cambio_vuelo
14986
+ - uy
14987
+ expand: true
14988
+ no-source: true
14989
+ reports:
14990
+ - format: html
14991
+ name: ${DATE}_${TASK_NAME}.html
14992
+ recipients:
14993
+ - estebanldh@gmail.com
14994
+ - nsimean@despegar.com
14995
+ - name: checkout.popup_cambio_vuelo.uy.roundtrip
14996
+ class_name: Henry::Task::CucumberTask
14997
+ options:
14998
+ tags:
14999
+ - checkout
15000
+ - popup_cambio_vuelo
15001
+ - uy
15002
+ - roundtrip
15003
+ expand: true
15004
+ no-source: true
15005
+ reports:
15006
+ - format: html
15007
+ name: ${DATE}_${TASK_NAME}.html
15008
+ recipients:
15009
+ - estebanldh@gmail.com
15010
+ - nsimean@despegar.com
15011
+ - name: checkout.popup_cambio_vuelo.uy.oneway
15012
+ class_name: Henry::Task::CucumberTask
15013
+ options:
15014
+ tags:
15015
+ - checkout
15016
+ - popup_cambio_vuelo
15017
+ - uy
15018
+ - oneway
15019
+ expand: true
15020
+ no-source: true
15021
+ reports:
15022
+ - format: html
15023
+ name: ${DATE}_${TASK_NAME}.html
15024
+ recipients:
15025
+ - estebanldh@gmail.com
15026
+ - nsimean@despegar.com
15027
+ - name: checkout.popup_cambio_vuelo.uy.multipledestinations
15028
+ class_name: Henry::Task::CucumberTask
15029
+ options:
15030
+ tags:
15031
+ - checkout
15032
+ - popup_cambio_vuelo
15033
+ - uy
15034
+ - multipledestinations
15035
+ expand: true
15036
+ no-source: true
15037
+ reports:
15038
+ - format: html
15039
+ name: ${DATE}_${TASK_NAME}.html
15040
+ recipients:
15041
+ - estebanldh@gmail.com
15042
+ - nsimean@despegar.com
15043
+ - name: checkout.popup_cambio_vuelo.ve
15044
+ class_name: Henry::Task::CucumberTask
15045
+ options:
15046
+ tags:
15047
+ - checkout
15048
+ - popup_cambio_vuelo
15049
+ - ve
15050
+ expand: true
15051
+ no-source: true
15052
+ reports:
15053
+ - format: html
15054
+ name: ${DATE}_${TASK_NAME}.html
15055
+ recipients:
15056
+ - estebanldh@gmail.com
15057
+ - nsimean@despegar.com
15058
+ - name: checkout.popup_cambio_vuelo.ve.roundtrip
15059
+ class_name: Henry::Task::CucumberTask
15060
+ options:
15061
+ tags:
15062
+ - checkout
15063
+ - popup_cambio_vuelo
15064
+ - ve
15065
+ - roundtrip
15066
+ expand: true
15067
+ no-source: true
15068
+ reports:
15069
+ - format: html
15070
+ name: ${DATE}_${TASK_NAME}.html
15071
+ recipients:
15072
+ - estebanldh@gmail.com
15073
+ - nsimean@despegar.com
15074
+ - name: checkout.popup_cambio_vuelo.ve.oneway
15075
+ class_name: Henry::Task::CucumberTask
15076
+ options:
15077
+ tags:
15078
+ - checkout
15079
+ - popup_cambio_vuelo
15080
+ - ve
15081
+ - oneway
15082
+ expand: true
15083
+ no-source: true
15084
+ reports:
15085
+ - format: html
15086
+ name: ${DATE}_${TASK_NAME}.html
15087
+ recipients:
15088
+ - estebanldh@gmail.com
15089
+ - nsimean@despegar.com
15090
+ - name: checkout.popup_cambio_vuelo.br
15091
+ class_name: Henry::Task::CucumberTask
15092
+ options:
15093
+ tags:
15094
+ - checkout
15095
+ - popup_cambio_vuelo
15096
+ - br
15097
+ expand: true
15098
+ no-source: true
15099
+ reports:
15100
+ - format: html
15101
+ name: ${DATE}_${TASK_NAME}.html
15102
+ recipients:
15103
+ - estebanldh@gmail.com
15104
+ - nsimean@despegar.com
15105
+ - name: checkout.popup_cambio_vuelo.br.roundtrip
15106
+ class_name: Henry::Task::CucumberTask
15107
+ options:
15108
+ tags:
15109
+ - checkout
15110
+ - popup_cambio_vuelo
15111
+ - br
15112
+ - roundtrip
15113
+ expand: true
15114
+ no-source: true
15115
+ reports:
15116
+ - format: html
15117
+ name: ${DATE}_${TASK_NAME}.html
15118
+ recipients:
15119
+ - estebanldh@gmail.com
15120
+ - nsimean@despegar.com
15121
+ - name: checkout.popup_cambio_vuelo.br.oneway
15122
+ class_name: Henry::Task::CucumberTask
15123
+ options:
15124
+ tags:
15125
+ - checkout
15126
+ - popup_cambio_vuelo
15127
+ - br
15128
+ - oneway
15129
+ expand: true
15130
+ no-source: true
15131
+ reports:
15132
+ - format: html
15133
+ name: ${DATE}_${TASK_NAME}.html
15134
+ recipients:
15135
+ - estebanldh@gmail.com
15136
+ - nsimean@despegar.com
15137
+ - name: checkout.popup_cambio_vuelo.br.multipledestinations
15138
+ class_name: Henry::Task::CucumberTask
15139
+ options:
15140
+ tags:
15141
+ - checkout
15142
+ - popup_cambio_vuelo
15143
+ - br
15144
+ - multipledestinations
15145
+ expand: true
15146
+ no-source: true
15147
+ reports:
15148
+ - format: html
15149
+ name: ${DATE}_${TASK_NAME}.html
15150
+ recipients:
15151
+ - estebanldh@gmail.com
15152
+ - nsimean@despegar.com
14210
15153
  - name: checkout.providers
14211
15154
  class_name: Henry::Task::CucumberTask
14212
15155
  options: