flights_gui_tests 2.3.40 → 2.3.41

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.
@@ -1,11 +1,11 @@
1
1
  #language: es
2
2
  @results
3
3
  Característica: results.search_2_ow
4
- El test verifica que la vista que permite comprar un roundtrip a partir de dos oneway funcione correctamente.
4
+ El test verifica que la vista que permite comprar un multipleoneway a partir de dos oneway funcione correctamente.
5
5
 
6
6
  @search_2_ow
7
7
  Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje para el tramo de IDA, es posible realizar una nueva busqueda para el tramo de VUELTA.
8
- Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE roundtrip de cabotaje en '<pais>'
8
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
9
9
  Cuando selecciono la opcion por tramos
10
10
  Y selecciono un vuelo de ida por una aerolinea
11
11
  Entonces es posible seleccionar un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
@@ -17,7 +17,7 @@ Característica: results.search_2_ow
17
17
 
18
18
  @search_2_ow
19
19
  Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje del tramo de IDA y del tramo del VUELTA, se visualiza la opcion de comprar con el precio ya calculado con la suma de ambas reservas.
20
- Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE roundtrip de cabotaje en '<pais>'
20
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
21
21
  Cuando selecciono la opcion por tramos
22
22
  Y selecciono un vuelo de ida por una aerolinea
23
23
  Y un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
@@ -31,14 +31,16 @@ Característica: results.search_2_ow
31
31
 
32
32
  @search_2_ow
33
33
  Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje del tramo de IDA y del tramo del VUELTA y su correspondiente compra, se visualiza la pagina del checkout con las dos reservas bookeadas. .
34
- Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE roundtrip de cabotaje en '<pais>'
34
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
35
35
  Cuando selecciono la opcion por tramos
36
36
  Y selecciono un vuelo de ida por una aerolinea
37
37
  Y un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
38
38
  Y hago click en comprar
39
- Entonces verifico que ingrese al checkout
40
- Y se visualiza el precio final siendo la suma de ambas reservas con los taxes incluidos
39
+ Entonces verifico que la pagina no rompa
40
+ Y espero que termine de cargar la pagina de checkout
41
+ Y verifico que ingrese al checkout
41
42
  Y se visualizan los dos itinerarios internamente enlazados
43
+ Y se visualiza el precio final siendo la suma de ambas reservas con los taxes incluidos
42
44
  Y no se visualiza la posibilidad de ingresar cupones de descuentos
43
45
 
44
46
  @br
@@ -48,8 +50,8 @@ Característica: results.search_2_ow
48
50
 
49
51
  @search_2_ow
50
52
  Esquema del escenario: al ingresar a realizar una busqueda en AR, no se visualiza la opcion "Por Tramos".
51
- Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE roundtrip de cabotaje en '<pais>'
52
- Entonces en el resultado de busqueda no se visualiza la opcion "Por Tramos"
53
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
54
+ Entonces en el resultado de busqueda no se visualiza la opcion "por tramos"
53
55
 
54
56
  @ar
55
57
  Ejemplos:
@@ -58,7 +60,7 @@ Característica: results.search_2_ow
58
60
 
59
61
  @search_2_ow
60
62
  Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje para el tramo de IDA, es posible ordenar por aerolinea, horario y escalas.
61
- Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE roundtrip de cabotaje en '<pais>'
63
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
62
64
  Cuando selecciono la opcion por tramos
63
65
  Entonces es posible ordenar el listado por aerolinea, horario y escalas
64
66
 
@@ -0,0 +1,94 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.multipleoneway
4
+ El test verifica que la compra con la funcionalidad de dos oneway para realizar un roundtrip funcione correctamente y realize las reservas correspondientes.
5
+
6
+ @multipleoneway
7
+ Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje del tramo de IDA y del tramo del VUELTA y su correspondiente compra y pago, se realiza la emision de las dos reservas (se espera emision offline).
8
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
9
+ Cuando selecciono la opcion por tramos
10
+ Y selecciono un vuelo de ida por una aerolinea
11
+ Y un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
12
+ Y hago click en comprar
13
+ Entonces verifico que la pagina no rompa
14
+ Y espero que termine de cargar la pagina de checkout
15
+ Y verifico que ingrese al checkout
16
+ Y se visualizan los dos itinerarios internamente enlazados
17
+ Y se visualiza el precio final siendo la suma de ambas reservas con los taxes incluidos
18
+ Y no se visualiza la posibilidad de ingresar cupones de descuentos
19
+ Y completo la compra con TC
20
+ Entonces se visualiza la pagina de gracias
21
+ Y totem emite de forma offline
22
+ Y no se visualiza para descargar ningun PDF
23
+ Y se indica que se enviaran las reservas por mail
24
+ Y se envia mail al usuario con un PDF con las 2 reservas dentro
25
+
26
+ @br
27
+ Ejemplos:
28
+ |pais|
29
+ |BR|
30
+
31
+ @multipleoneway
32
+ Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje LASTMINUTE del tramo de IDA y de un vuelo NOLASTMINUTE del tramo del VUELTA y su correspondiente compra y pago, si la reserva LASTMINUTE no se pudo procesar y la NOLASTMINUTE si, se deberan cancelar ambas.
33
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
34
+ Cuando selecciono la opcion por tramos
35
+ Y selecciono un vuelo de ida por una aerolinea
36
+ Y un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
37
+ Y hago click en comprar
38
+ Entonces verifico que la pagina no rompa
39
+ Y espero que termine de cargar la pagina de checkout
40
+ Y verifico que ingrese al checkout
41
+ Y se visualizan los dos itinerarios internamente enlazados
42
+ Y se visualiza el precio final siendo la suma de ambas reservas con los taxes incluidos
43
+ Y no se visualiza la posibilidad de ingresar cupones de descuentos
44
+ Y completo la compra con TC
45
+ Entonces se visualiza la pagina de gracias
46
+ Y totem emite de forma offline
47
+ Entonces cancelo la reserva en el proveedor
48
+
49
+
50
+ @br
51
+ Ejemplos:
52
+ |pais|
53
+ |BR|
54
+
55
+ @multipleoneway
56
+ Esquema del escenario: Smoke TEST para la opcion de ida y vuelta separada
57
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
58
+ Cuando selecciono la opcion por tramos
59
+ Entonces cargo los itinerarios de ida
60
+ Entonces valido los itinerarios de ida
61
+ Cuando elijo la opcion '0' de los itinerarios de ida
62
+ Entonces valido que se muestre en la caja de ida
63
+ Entonces cargo los itinerarios de vuelta
64
+ Entonces valido los itinerarios de vuelta
65
+ Y elijo la opcion '0' de los itinerarios de vuelta
66
+ Entonces valido que se muestre en la caja de vuelta
67
+ Y hago click en comprar
68
+ Entonces verifico que la pagina no rompa
69
+ Y espero que termine de cargar la pagina de checkout
70
+ Y verifico que ingrese al checkout
71
+ Y se visualizan los dos itinerarios internamente enlazados
72
+ Y se visualiza el precio final siendo la suma de ambas reservas con los taxes incluidos
73
+ Y no se visualiza la posibilidad de ingresar cupones de descuentos
74
+ Entonces si existe la opcion de cobertura, elijo "no_chequear" si quiero cobertura
75
+ Y valido los valores del desglose del checkout con multipleoneway
76
+ Y verifico el pixel de Efrontier
77
+ Y verifico el pixel de trackeame en checkout
78
+ Y valido que no se muestre la leyenda de seguro gratis en el desglose
79
+ Y si el site es "AR", verifico el tag de remarketing de facebook
80
+ Entonces si el site no es "CL", verifico que los precios de las cuotas se muestran correctamente
81
+ Y verifico que se muestren la caja de clientes felices
82
+ Y verifico que se muestren las reviews de aerolineas
83
+ Y completo la compra con TC
84
+ Entonces se visualiza la pagina de gracias
85
+ Y totem emite de forma offline
86
+ Y verifico el tag de datalayer
87
+ Y verifico el pixel de Efrontier
88
+ Y verifico el pixel de trackeame en gracias
89
+ Y cancelo la reserva en el proveedor
90
+
91
+ @br
92
+ Ejemplos:
93
+ |pais|
94
+ |BR|
@@ -1,65 +1,67 @@
1
1
  #language: es
2
2
  @results
3
3
  Característica: results.multipleoneway
4
- Se verifica la correcta carga y funcionamiento de la pagina de resultados
5
-
6
- @multipleoneway
7
- Esquema del escenario: Smoke TEST para la opcion de ida y vuelta separada
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
- Y verifico que traiga resultados
14
- Cuando ingreso a resultados con cookie "showMultipleoneway" al "1"
15
- Y espero que termine de cargar la pagina ida y vuelta separada
16
- Y verifico que traiga resultados
17
- Y cierro popups
18
- Entonces cargo los itinerarios de ida
19
- Entonces valido los itinerarios de ida
20
- Cuando elijo una opcion de ida
21
- Entonces valido que se muestre en la caja de ida
22
- Entonces cargo los itinerarios de vuelta
23
- Entonces valido los itinerarios de vuelta
24
- Y elijo una opcion de vuelta
25
- Entonces valido que se muestre en la caja de vuelta
26
- Entonces paso al checkout
4
+ El test verifica que la vista que permite comprar un multipleoneway a partir de dos oneway funcione correctamente.
5
+
6
+ @multipleoneway
7
+ Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje para el tramo de IDA, es posible realizar una nueva busqueda para el tramo de VUELTA.
8
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
9
+ Cuando selecciono la opcion por tramos
10
+ Y selecciono un vuelo de ida por una aerolinea
11
+ Entonces es posible seleccionar un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
12
+
13
+ @br
14
+ Ejemplos:
15
+ |pais|
16
+ |BR|
17
+
18
+ @multipleoneway
19
+ Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje del tramo de IDA y del tramo del VUELTA, se visualiza la opcion de comprar con el precio ya calculado con la suma de ambas reservas.
20
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
21
+ Cuando selecciono la opcion por tramos
22
+ Y selecciono un vuelo de ida por una aerolinea
23
+ Y un vuelo de vuelta por una aerolinea distinta a la elegida en la ida
24
+ Entonces se visualiza la opcion de comprar
25
+ Y el precio es la suma de ambos tramos elegidos sin taxes
26
+
27
+ @br
28
+ Ejemplos:
29
+ |pais|
30
+ |BR|
31
+
32
+ @multipleoneway
33
+ Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje del tramo de IDA y del tramo del VUELTA y su correspondiente compra, se visualiza la pagina del checkout con las dos reservas bookeadas. .
34
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
35
+ Cuando selecciono la opcion por tramos
36
+ Y selecciono un vuelo de ida por una aerolinea
37
+ Y un vuelo de vuelta por una misma aerolinea a la elegida en la ida
38
+ Y hago click en comprar
27
39
  Entonces verifico que la pagina no rompa
28
40
  Y espero que termine de cargar la pagina de checkout
29
- Y verifico que ingrese al checkout
30
- Entonces si existe la opcion de cobertura, elijo "no_chequear" si quiero cobertura
31
- Y valido los valores del desglose del checkout con multipleoneway
32
- Y verifico el pixel de Efrontier
33
- Y verifico el pixel de trackeame en checkout
34
- Y valido que no se muestre la leyenda de seguro gratis en el desglose
35
- Y si el site es "AR", verifico el tag de remarketing de facebook
36
- Entonces si el site no es "CL", verifico que los precios de las cuotas se muestran correctamente
37
- Y verifico que se muestren la caja de clientes felices
38
- Y verifico que se muestren las reviews de aerolineas
39
- Entonces cargo los pasajeros
40
- Y cargo los datos de la tarjeta en el nuevo formulario
41
- Y si el site es "AR|MX|PE|BR", cargo los datos de facturacion
42
- Y cargo los datos de contacto
43
- Y verifico que los datos cargados sean mostrados correctamente al lado del boton comprar
44
- Cuando acepto y compro
45
- Entonces espero que termine el pedido de compra
46
- Entonces verifico si no fallan los dos tramos elegidos
47
- Y verifico si no trae errores
48
- Entonces si aparece el popup de no disponibilidad, elijo un itinerario para checkout de nuevas formas de pago del popup de no disponibilidad
49
- Entonces espero que termine de cargar la pagina de gracias
50
- Y verifico que ingrese a la pagina de gracias
51
- Y verifico el link de mi despegar
52
- Y verifico el popup de asistencia al viajero
53
- Y verifico los datos del vuelo comprado
54
- Y verifico los valores del desglose en gracias contra los del checkout
55
- Y verifico el tag de datalayer
56
- Y verifico el pixel de Efrontier
57
- Y verifico el pixel de trackeame en gracias
58
- Y cancelo la reserva en el proveedor
41
+ Y verifico que ingrese al checkout
42
+
43
+ @br
44
+ Ejemplos:
45
+ |pais|
46
+ |BR|
47
+
48
+ @multipleoneway
49
+ Esquema del escenario: al ingresar a realizar una busqueda en AR, no se visualiza la opcion "Por Tramos".
50
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
51
+ Entonces en el resultado de busqueda no se visualiza la opcion "por tramos"
52
+
53
+ @ar
54
+ Ejemplos:
55
+ |pais|
56
+ |AR|
57
+
58
+ @multipleoneway
59
+ Esquema del escenario: al realizar una busqueda de un vuelo de cabotaje para el tramo de IDA, es posible ordenar por aerolinea, horario y escalas.
60
+ Dado un usuario que ingresa a realizar una busqueda de un vuelo NO LASTMINUTE multipleoneway de cabotaje en '<pais>'
61
+ Cuando selecciono la opcion por tramos
62
+ Entonces es posible ordenar el listado por aerolinea, horario y escalas
59
63
 
60
64
  @br
61
- @multipleoneway
62
- Ejemplos:
63
- |pais|tipo|cabotage|
64
- |BR |multipleoneway|true|
65
-
65
+ Ejemplos:
66
+ |pais|
67
+ |BR|
@@ -30,7 +30,7 @@ Gem::Specification.new do |gem|
30
30
  gem.add_dependency('mock_search', '>= 1.0.0')
31
31
  gem.add_dependency('mysql2')
32
32
  gem.add_dependency('dater')
33
- gem.add_dependency('byebug')
33
+ #gem.add_dependency('byebug')
34
34
  gem.add_dependency('auto_uy_utils')
35
35
  gem.add_dependency('roma_automation')
36
36
  gem.add_dependency('parallel_tests')
data/henry-context.yml CHANGED
@@ -28,14 +28,58 @@ tasks:
28
28
  recipients:
29
29
  - estebanldh@gmail.com
30
30
  - nsimean@despegar.com
31
- - name: results.multipleoneway.br.multipleoneway
31
+ - name: results.multipleoneway.br
32
+ class_name: Henry::Task::CucumberTask
33
+ options:
34
+ tags:
35
+ - results
36
+ - multipleoneway
37
+ - br
38
+ expand: true
39
+ no-source: true
40
+ reports:
41
+ - format: html
42
+ name: ${DATE}_${TASK_NAME}.html
43
+ recipients:
44
+ - estebanldh@gmail.com
45
+ - nsimean@despegar.com
46
+ - name: results.multipleoneway.br
32
47
  class_name: Henry::Task::CucumberTask
33
48
  options:
34
49
  tags:
35
50
  - results
36
51
  - multipleoneway
37
52
  - br
53
+ expand: true
54
+ no-source: true
55
+ reports:
56
+ - format: html
57
+ name: ${DATE}_${TASK_NAME}.html
58
+ recipients:
59
+ - estebanldh@gmail.com
60
+ - nsimean@despegar.com
61
+ - name: results.multipleoneway.ar
62
+ class_name: Henry::Task::CucumberTask
63
+ options:
64
+ tags:
65
+ - results
66
+ - multipleoneway
67
+ - ar
68
+ expand: true
69
+ no-source: true
70
+ reports:
71
+ - format: html
72
+ name: ${DATE}_${TASK_NAME}.html
73
+ recipients:
74
+ - estebanldh@gmail.com
75
+ - nsimean@despegar.com
76
+ - name: results.multipleoneway.br
77
+ class_name: Henry::Task::CucumberTask
78
+ options:
79
+ tags:
80
+ - results
38
81
  - multipleoneway
82
+ - br
39
83
  expand: true
40
84
  no-source: true
41
85
  reports:
@@ -8002,12 +8046,12 @@ tasks:
8002
8046
  recipients:
8003
8047
  - estebanldh@gmail.com
8004
8048
  - nsimean@despegar.com
8005
- - name: landing.long_tail
8049
+ - name: landing.orders
8006
8050
  class_name: Henry::Task::CucumberTask
8007
8051
  options:
8008
8052
  tags:
8009
8053
  - landing
8010
- - long_tail
8054
+ - orders
8011
8055
  expand: true
8012
8056
  no-source: true
8013
8057
  reports:
@@ -8016,12 +8060,12 @@ tasks:
8016
8060
  recipients:
8017
8061
  - estebanldh@gmail.com
8018
8062
  - nsimean@despegar.com
8019
- - name: landing.long_tail.ar
8063
+ - name: landing.orders.ar
8020
8064
  class_name: Henry::Task::CucumberTask
8021
8065
  options:
8022
8066
  tags:
8023
8067
  - landing
8024
- - long_tail
8068
+ - orders
8025
8069
  - ar
8026
8070
  expand: true
8027
8071
  no-source: true
@@ -8031,14 +8075,13 @@ tasks:
8031
8075
  recipients:
8032
8076
  - estebanldh@gmail.com
8033
8077
  - nsimean@despegar.com
8034
- - name: landing.long_tail.ar.roundtrip
8078
+ - name: landing.orders.br
8035
8079
  class_name: Henry::Task::CucumberTask
8036
8080
  options:
8037
8081
  tags:
8038
8082
  - landing
8039
- - long_tail
8040
- - ar
8041
- - roundtrip
8083
+ - orders
8084
+ - br
8042
8085
  expand: true
8043
8086
  no-source: true
8044
8087
  reports:
@@ -8047,14 +8090,13 @@ tasks:
8047
8090
  recipients:
8048
8091
  - estebanldh@gmail.com
8049
8092
  - nsimean@despegar.com
8050
- - name: landing.long_tail.ar.oneway
8093
+ - name: landing.orders.cl
8051
8094
  class_name: Henry::Task::CucumberTask
8052
8095
  options:
8053
8096
  tags:
8054
8097
  - landing
8055
- - long_tail
8056
- - ar
8057
- - oneway
8098
+ - orders
8099
+ - cl
8058
8100
  expand: true
8059
8101
  no-source: true
8060
8102
  reports:
@@ -8063,13 +8105,13 @@ tasks:
8063
8105
  recipients:
8064
8106
  - estebanldh@gmail.com
8065
8107
  - nsimean@despegar.com
8066
- - name: landing.long_tail.br
8108
+ - name: landing.orders.co
8067
8109
  class_name: Henry::Task::CucumberTask
8068
8110
  options:
8069
8111
  tags:
8070
8112
  - landing
8071
- - long_tail
8072
- - br
8113
+ - orders
8114
+ - co
8073
8115
  expand: true
8074
8116
  no-source: true
8075
8117
  reports:
@@ -8078,14 +8120,13 @@ tasks:
8078
8120
  recipients:
8079
8121
  - estebanldh@gmail.com
8080
8122
  - nsimean@despegar.com
8081
- - name: landing.long_tail.br.roundtrip
8123
+ - name: landing.orders.cr
8082
8124
  class_name: Henry::Task::CucumberTask
8083
8125
  options:
8084
8126
  tags:
8085
8127
  - landing
8086
- - long_tail
8087
- - br
8088
- - roundtrip
8128
+ - orders
8129
+ - cr
8089
8130
  expand: true
8090
8131
  no-source: true
8091
8132
  reports:
@@ -8094,14 +8135,13 @@ tasks:
8094
8135
  recipients:
8095
8136
  - estebanldh@gmail.com
8096
8137
  - nsimean@despegar.com
8097
- - name: landing.long_tail.br.oneway
8138
+ - name: landing.orders.pa
8098
8139
  class_name: Henry::Task::CucumberTask
8099
8140
  options:
8100
8141
  tags:
8101
8142
  - landing
8102
- - long_tail
8103
- - br
8104
- - oneway
8143
+ - orders
8144
+ - pa
8105
8145
  expand: true
8106
8146
  no-source: true
8107
8147
  reports:
@@ -8110,13 +8150,13 @@ tasks:
8110
8150
  recipients:
8111
8151
  - estebanldh@gmail.com
8112
8152
  - nsimean@despegar.com
8113
- - name: landing.long_tail.co
8153
+ - name: landing.orders.ec
8114
8154
  class_name: Henry::Task::CucumberTask
8115
8155
  options:
8116
8156
  tags:
8117
8157
  - landing
8118
- - long_tail
8119
- - co
8158
+ - orders
8159
+ - ec
8120
8160
  expand: true
8121
8161
  no-source: true
8122
8162
  reports:
@@ -8125,14 +8165,13 @@ tasks:
8125
8165
  recipients:
8126
8166
  - estebanldh@gmail.com
8127
8167
  - nsimean@despegar.com
8128
- - name: landing.long_tail.co.roundtrip
8168
+ - name: landing.orders.mx
8129
8169
  class_name: Henry::Task::CucumberTask
8130
8170
  options:
8131
8171
  tags:
8132
8172
  - landing
8133
- - long_tail
8134
- - co
8135
- - roundtrip
8173
+ - orders
8174
+ - mx
8136
8175
  expand: true
8137
8176
  no-source: true
8138
8177
  reports:
@@ -8141,14 +8180,13 @@ tasks:
8141
8180
  recipients:
8142
8181
  - estebanldh@gmail.com
8143
8182
  - nsimean@despegar.com
8144
- - name: landing.long_tail.co.oneway
8183
+ - name: landing.orders.pe
8145
8184
  class_name: Henry::Task::CucumberTask
8146
8185
  options:
8147
8186
  tags:
8148
8187
  - landing
8149
- - long_tail
8150
- - co
8151
- - oneway
8188
+ - orders
8189
+ - pe
8152
8190
  expand: true
8153
8191
  no-source: true
8154
8192
  reports:
@@ -8157,13 +8195,13 @@ tasks:
8157
8195
  recipients:
8158
8196
  - estebanldh@gmail.com
8159
8197
  - nsimean@despegar.com
8160
- - name: landing.long_tail.cl
8198
+ - name: landing.orders.uy
8161
8199
  class_name: Henry::Task::CucumberTask
8162
8200
  options:
8163
8201
  tags:
8164
8202
  - landing
8165
- - long_tail
8166
- - cl
8203
+ - orders
8204
+ - uy
8167
8205
  expand: true
8168
8206
  no-source: true
8169
8207
  reports:
@@ -8172,14 +8210,13 @@ tasks:
8172
8210
  recipients:
8173
8211
  - estebanldh@gmail.com
8174
8212
  - nsimean@despegar.com
8175
- - name: landing.long_tail.cl.roundtrip
8213
+ - name: landing.orders.us
8176
8214
  class_name: Henry::Task::CucumberTask
8177
8215
  options:
8178
8216
  tags:
8179
8217
  - landing
8180
- - long_tail
8181
- - cl
8182
- - roundtrip
8218
+ - orders
8219
+ - us
8183
8220
  expand: true
8184
8221
  no-source: true
8185
8222
  reports:
@@ -8188,14 +8225,13 @@ tasks:
8188
8225
  recipients:
8189
8226
  - estebanldh@gmail.com
8190
8227
  - nsimean@despegar.com
8191
- - name: landing.long_tail.cl.oneway
8228
+ - name: landing.orders.ve
8192
8229
  class_name: Henry::Task::CucumberTask
8193
8230
  options:
8194
8231
  tags:
8195
8232
  - landing
8196
- - long_tail
8197
- - cl
8198
- - oneway
8233
+ - orders
8234
+ - ve
8199
8235
  expand: true
8200
8236
  no-source: true
8201
8237
  reports:
@@ -8204,13 +8240,12 @@ tasks:
8204
8240
  recipients:
8205
8241
  - estebanldh@gmail.com
8206
8242
  - nsimean@despegar.com
8207
- - name: landing.long_tail.cr
8243
+ - name: landing.tags
8208
8244
  class_name: Henry::Task::CucumberTask
8209
8245
  options:
8210
8246
  tags:
8211
8247
  - landing
8212
- - long_tail
8213
- - cr
8248
+ - tags
8214
8249
  expand: true
8215
8250
  no-source: true
8216
8251
  reports:
@@ -8219,13 +8254,28 @@ tasks:
8219
8254
  recipients:
8220
8255
  - estebanldh@gmail.com
8221
8256
  - nsimean@despegar.com
8222
- - name: landing.long_tail.cr.roundtrip
8257
+ - name: landing.tags.ar
8223
8258
  class_name: Henry::Task::CucumberTask
8224
8259
  options:
8225
8260
  tags:
8226
8261
  - landing
8227
- - long_tail
8228
- - cr
8262
+ - tags
8263
+ - ar
8264
+ expand: true
8265
+ no-source: true
8266
+ reports:
8267
+ - format: html
8268
+ name: ${DATE}_${TASK_NAME}.html
8269
+ recipients:
8270
+ - estebanldh@gmail.com
8271
+ - nsimean@despegar.com
8272
+ - name: landing.tags.ar.roundtrip
8273
+ class_name: Henry::Task::CucumberTask
8274
+ options:
8275
+ tags:
8276
+ - landing
8277
+ - tags
8278
+ - ar
8229
8279
  - roundtrip
8230
8280
  expand: true
8231
8281
  no-source: true
@@ -8235,13 +8285,13 @@ tasks:
8235
8285
  recipients:
8236
8286
  - estebanldh@gmail.com
8237
8287
  - nsimean@despegar.com
8238
- - name: landing.long_tail.cr.oneway
8288
+ - name: landing.tags.ar.oneway
8239
8289
  class_name: Henry::Task::CucumberTask
8240
8290
  options:
8241
8291
  tags:
8242
8292
  - landing
8243
- - long_tail
8244
- - cr
8293
+ - tags
8294
+ - ar
8245
8295
  - oneway
8246
8296
  expand: true
8247
8297
  no-source: true
@@ -8251,13 +8301,13 @@ tasks:
8251
8301
  recipients:
8252
8302
  - estebanldh@gmail.com
8253
8303
  - nsimean@despegar.com
8254
- - name: landing.long_tail.ec
8304
+ - name: landing.tags.br
8255
8305
  class_name: Henry::Task::CucumberTask
8256
8306
  options:
8257
8307
  tags:
8258
8308
  - landing
8259
- - long_tail
8260
- - ec
8309
+ - tags
8310
+ - br
8261
8311
  expand: true
8262
8312
  no-source: true
8263
8313
  reports:
@@ -8266,13 +8316,13 @@ tasks:
8266
8316
  recipients:
8267
8317
  - estebanldh@gmail.com
8268
8318
  - nsimean@despegar.com
8269
- - name: landing.long_tail.ec.roundtrip
8319
+ - name: landing.tags.br.roundtrip
8270
8320
  class_name: Henry::Task::CucumberTask
8271
8321
  options:
8272
8322
  tags:
8273
8323
  - landing
8274
- - long_tail
8275
- - ec
8324
+ - tags
8325
+ - br
8276
8326
  - roundtrip
8277
8327
  expand: true
8278
8328
  no-source: true
@@ -8282,13 +8332,13 @@ tasks:
8282
8332
  recipients:
8283
8333
  - estebanldh@gmail.com
8284
8334
  - nsimean@despegar.com
8285
- - name: landing.long_tail.ec.oneway
8335
+ - name: landing.tags.br.oneway
8286
8336
  class_name: Henry::Task::CucumberTask
8287
8337
  options:
8288
8338
  tags:
8289
8339
  - landing
8290
- - long_tail
8291
- - ec
8340
+ - tags
8341
+ - br
8292
8342
  - oneway
8293
8343
  expand: true
8294
8344
  no-source: true
@@ -8298,13 +8348,13 @@ tasks:
8298
8348
  recipients:
8299
8349
  - estebanldh@gmail.com
8300
8350
  - nsimean@despegar.com
8301
- - name: landing.long_tail.mx
8351
+ - name: landing.tags.co
8302
8352
  class_name: Henry::Task::CucumberTask
8303
8353
  options:
8304
8354
  tags:
8305
8355
  - landing
8306
- - long_tail
8307
- - mx
8356
+ - tags
8357
+ - co
8308
8358
  expand: true
8309
8359
  no-source: true
8310
8360
  reports:
@@ -8313,13 +8363,13 @@ tasks:
8313
8363
  recipients:
8314
8364
  - estebanldh@gmail.com
8315
8365
  - nsimean@despegar.com
8316
- - name: landing.long_tail.mx.roundtrip
8366
+ - name: landing.tags.co.roundtrip
8317
8367
  class_name: Henry::Task::CucumberTask
8318
8368
  options:
8319
8369
  tags:
8320
8370
  - landing
8321
- - long_tail
8322
- - mx
8371
+ - tags
8372
+ - co
8323
8373
  - roundtrip
8324
8374
  expand: true
8325
8375
  no-source: true
@@ -8329,13 +8379,13 @@ tasks:
8329
8379
  recipients:
8330
8380
  - estebanldh@gmail.com
8331
8381
  - nsimean@despegar.com
8332
- - name: landing.long_tail.mx.oneway
8382
+ - name: landing.tags.co.oneway
8333
8383
  class_name: Henry::Task::CucumberTask
8334
8384
  options:
8335
8385
  tags:
8336
8386
  - landing
8337
- - long_tail
8338
- - mx
8387
+ - tags
8388
+ - co
8339
8389
  - oneway
8340
8390
  expand: true
8341
8391
  no-source: true
@@ -8345,13 +8395,13 @@ tasks:
8345
8395
  recipients:
8346
8396
  - estebanldh@gmail.com
8347
8397
  - nsimean@despegar.com
8348
- - name: landing.long_tail.pa
8398
+ - name: landing.tags.cl
8349
8399
  class_name: Henry::Task::CucumberTask
8350
8400
  options:
8351
8401
  tags:
8352
8402
  - landing
8353
- - long_tail
8354
- - pa
8403
+ - tags
8404
+ - cl
8355
8405
  expand: true
8356
8406
  no-source: true
8357
8407
  reports:
@@ -8360,13 +8410,13 @@ tasks:
8360
8410
  recipients:
8361
8411
  - estebanldh@gmail.com
8362
8412
  - nsimean@despegar.com
8363
- - name: landing.long_tail.pa.roundtrip
8413
+ - name: landing.tags.cl.roundtrip
8364
8414
  class_name: Henry::Task::CucumberTask
8365
8415
  options:
8366
8416
  tags:
8367
8417
  - landing
8368
- - long_tail
8369
- - pa
8418
+ - tags
8419
+ - cl
8370
8420
  - roundtrip
8371
8421
  expand: true
8372
8422
  no-source: true
@@ -8376,13 +8426,13 @@ tasks:
8376
8426
  recipients:
8377
8427
  - estebanldh@gmail.com
8378
8428
  - nsimean@despegar.com
8379
- - name: landing.long_tail.pa.oneway
8429
+ - name: landing.tags.cl.oneway
8380
8430
  class_name: Henry::Task::CucumberTask
8381
8431
  options:
8382
8432
  tags:
8383
8433
  - landing
8384
- - long_tail
8385
- - pa
8434
+ - tags
8435
+ - cl
8386
8436
  - oneway
8387
8437
  expand: true
8388
8438
  no-source: true
@@ -8392,13 +8442,13 @@ tasks:
8392
8442
  recipients:
8393
8443
  - estebanldh@gmail.com
8394
8444
  - nsimean@despegar.com
8395
- - name: landing.long_tail.pe
8445
+ - name: landing.tags.cr
8396
8446
  class_name: Henry::Task::CucumberTask
8397
8447
  options:
8398
8448
  tags:
8399
8449
  - landing
8400
- - long_tail
8401
- - pe
8450
+ - tags
8451
+ - cr
8402
8452
  expand: true
8403
8453
  no-source: true
8404
8454
  reports:
@@ -8407,13 +8457,13 @@ tasks:
8407
8457
  recipients:
8408
8458
  - estebanldh@gmail.com
8409
8459
  - nsimean@despegar.com
8410
- - name: landing.long_tail.pe.roundtrip
8460
+ - name: landing.tags.cr.roundtrip
8411
8461
  class_name: Henry::Task::CucumberTask
8412
8462
  options:
8413
8463
  tags:
8414
8464
  - landing
8415
- - long_tail
8416
- - pe
8465
+ - tags
8466
+ - cr
8417
8467
  - roundtrip
8418
8468
  expand: true
8419
8469
  no-source: true
@@ -8423,13 +8473,13 @@ tasks:
8423
8473
  recipients:
8424
8474
  - estebanldh@gmail.com
8425
8475
  - nsimean@despegar.com
8426
- - name: landing.long_tail.pe.oneway
8476
+ - name: landing.tags.cr.oneway
8427
8477
  class_name: Henry::Task::CucumberTask
8428
8478
  options:
8429
8479
  tags:
8430
8480
  - landing
8431
- - long_tail
8432
- - pe
8481
+ - tags
8482
+ - cr
8433
8483
  - oneway
8434
8484
  expand: true
8435
8485
  no-source: true
@@ -8439,13 +8489,13 @@ tasks:
8439
8489
  recipients:
8440
8490
  - estebanldh@gmail.com
8441
8491
  - nsimean@despegar.com
8442
- - name: landing.long_tail.us
8492
+ - name: landing.tags.ec
8443
8493
  class_name: Henry::Task::CucumberTask
8444
8494
  options:
8445
8495
  tags:
8446
8496
  - landing
8447
- - long_tail
8448
- - us
8497
+ - tags
8498
+ - ec
8449
8499
  expand: true
8450
8500
  no-source: true
8451
8501
  reports:
@@ -8454,13 +8504,13 @@ tasks:
8454
8504
  recipients:
8455
8505
  - estebanldh@gmail.com
8456
8506
  - nsimean@despegar.com
8457
- - name: landing.long_tail.us.roundtrip
8507
+ - name: landing.tags.ec.roundtrip
8458
8508
  class_name: Henry::Task::CucumberTask
8459
8509
  options:
8460
8510
  tags:
8461
8511
  - landing
8462
- - long_tail
8463
- - us
8512
+ - tags
8513
+ - ec
8464
8514
  - roundtrip
8465
8515
  expand: true
8466
8516
  no-source: true
@@ -8470,13 +8520,13 @@ tasks:
8470
8520
  recipients:
8471
8521
  - estebanldh@gmail.com
8472
8522
  - nsimean@despegar.com
8473
- - name: landing.long_tail.us.oneway
8523
+ - name: landing.tags.ec.oneway
8474
8524
  class_name: Henry::Task::CucumberTask
8475
8525
  options:
8476
8526
  tags:
8477
8527
  - landing
8478
- - long_tail
8479
- - us
8528
+ - tags
8529
+ - ec
8480
8530
  - oneway
8481
8531
  expand: true
8482
8532
  no-source: true
@@ -8486,13 +8536,13 @@ tasks:
8486
8536
  recipients:
8487
8537
  - estebanldh@gmail.com
8488
8538
  - nsimean@despegar.com
8489
- - name: landing.long_tail.uy
8539
+ - name: landing.tags.mx
8490
8540
  class_name: Henry::Task::CucumberTask
8491
8541
  options:
8492
8542
  tags:
8493
8543
  - landing
8494
- - long_tail
8495
- - uy
8544
+ - tags
8545
+ - mx
8496
8546
  expand: true
8497
8547
  no-source: true
8498
8548
  reports:
@@ -8501,13 +8551,13 @@ tasks:
8501
8551
  recipients:
8502
8552
  - estebanldh@gmail.com
8503
8553
  - nsimean@despegar.com
8504
- - name: landing.long_tail.uy.roundtrip
8554
+ - name: landing.tags.mx.roundtrip
8505
8555
  class_name: Henry::Task::CucumberTask
8506
8556
  options:
8507
8557
  tags:
8508
8558
  - landing
8509
- - long_tail
8510
- - uy
8559
+ - tags
8560
+ - mx
8511
8561
  - roundtrip
8512
8562
  expand: true
8513
8563
  no-source: true
@@ -8517,13 +8567,13 @@ tasks:
8517
8567
  recipients:
8518
8568
  - estebanldh@gmail.com
8519
8569
  - nsimean@despegar.com
8520
- - name: landing.long_tail.uy.oneway
8570
+ - name: landing.tags.mx.oneway
8521
8571
  class_name: Henry::Task::CucumberTask
8522
8572
  options:
8523
8573
  tags:
8524
8574
  - landing
8525
- - long_tail
8526
- - uy
8575
+ - tags
8576
+ - mx
8527
8577
  - oneway
8528
8578
  expand: true
8529
8579
  no-source: true
@@ -8533,13 +8583,13 @@ tasks:
8533
8583
  recipients:
8534
8584
  - estebanldh@gmail.com
8535
8585
  - nsimean@despegar.com
8536
- - name: landing.long_tail.ve
8586
+ - name: landing.tags.pa
8537
8587
  class_name: Henry::Task::CucumberTask
8538
8588
  options:
8539
8589
  tags:
8540
8590
  - landing
8541
- - long_tail
8542
- - ve
8591
+ - tags
8592
+ - pa
8543
8593
  expand: true
8544
8594
  no-source: true
8545
8595
  reports:
@@ -8548,13 +8598,13 @@ tasks:
8548
8598
  recipients:
8549
8599
  - estebanldh@gmail.com
8550
8600
  - nsimean@despegar.com
8551
- - name: landing.long_tail.ve.roundtrip
8601
+ - name: landing.tags.pa.roundtrip
8552
8602
  class_name: Henry::Task::CucumberTask
8553
8603
  options:
8554
8604
  tags:
8555
8605
  - landing
8556
- - long_tail
8557
- - ve
8606
+ - tags
8607
+ - pa
8558
8608
  - roundtrip
8559
8609
  expand: true
8560
8610
  no-source: true
@@ -8564,13 +8614,13 @@ tasks:
8564
8614
  recipients:
8565
8615
  - estebanldh@gmail.com
8566
8616
  - nsimean@despegar.com
8567
- - name: landing.long_tail.ve.oneway
8617
+ - name: landing.tags.pa.oneway
8568
8618
  class_name: Henry::Task::CucumberTask
8569
8619
  options:
8570
8620
  tags:
8571
8621
  - landing
8572
- - long_tail
8573
- - ve
8622
+ - tags
8623
+ - pa
8574
8624
  - oneway
8575
8625
  expand: true
8576
8626
  no-source: true
@@ -8580,12 +8630,13 @@ tasks:
8580
8630
  recipients:
8581
8631
  - estebanldh@gmail.com
8582
8632
  - nsimean@despegar.com
8583
- - name: landing.orders
8633
+ - name: landing.tags.pe
8584
8634
  class_name: Henry::Task::CucumberTask
8585
8635
  options:
8586
8636
  tags:
8587
8637
  - landing
8588
- - orders
8638
+ - tags
8639
+ - pe
8589
8640
  expand: true
8590
8641
  no-source: true
8591
8642
  reports:
@@ -8594,13 +8645,14 @@ tasks:
8594
8645
  recipients:
8595
8646
  - estebanldh@gmail.com
8596
8647
  - nsimean@despegar.com
8597
- - name: landing.orders.ar
8648
+ - name: landing.tags.pe.roundtrip
8598
8649
  class_name: Henry::Task::CucumberTask
8599
8650
  options:
8600
8651
  tags:
8601
8652
  - landing
8602
- - orders
8603
- - ar
8653
+ - tags
8654
+ - pe
8655
+ - roundtrip
8604
8656
  expand: true
8605
8657
  no-source: true
8606
8658
  reports:
@@ -8609,13 +8661,14 @@ tasks:
8609
8661
  recipients:
8610
8662
  - estebanldh@gmail.com
8611
8663
  - nsimean@despegar.com
8612
- - name: landing.orders.br
8664
+ - name: landing.tags.pe.oneway
8613
8665
  class_name: Henry::Task::CucumberTask
8614
8666
  options:
8615
8667
  tags:
8616
8668
  - landing
8617
- - orders
8618
- - br
8669
+ - tags
8670
+ - pe
8671
+ - oneway
8619
8672
  expand: true
8620
8673
  no-source: true
8621
8674
  reports:
@@ -8624,13 +8677,13 @@ tasks:
8624
8677
  recipients:
8625
8678
  - estebanldh@gmail.com
8626
8679
  - nsimean@despegar.com
8627
- - name: landing.orders.cl
8680
+ - name: landing.tags.us
8628
8681
  class_name: Henry::Task::CucumberTask
8629
8682
  options:
8630
8683
  tags:
8631
8684
  - landing
8632
- - orders
8633
- - cl
8685
+ - tags
8686
+ - us
8634
8687
  expand: true
8635
8688
  no-source: true
8636
8689
  reports:
@@ -8639,13 +8692,14 @@ tasks:
8639
8692
  recipients:
8640
8693
  - estebanldh@gmail.com
8641
8694
  - nsimean@despegar.com
8642
- - name: landing.orders.co
8695
+ - name: landing.tags.us.roundtrip
8643
8696
  class_name: Henry::Task::CucumberTask
8644
8697
  options:
8645
8698
  tags:
8646
8699
  - landing
8647
- - orders
8648
- - co
8700
+ - tags
8701
+ - us
8702
+ - roundtrip
8649
8703
  expand: true
8650
8704
  no-source: true
8651
8705
  reports:
@@ -8654,13 +8708,14 @@ tasks:
8654
8708
  recipients:
8655
8709
  - estebanldh@gmail.com
8656
8710
  - nsimean@despegar.com
8657
- - name: landing.orders.cr
8711
+ - name: landing.tags.us.oneway
8658
8712
  class_name: Henry::Task::CucumberTask
8659
8713
  options:
8660
8714
  tags:
8661
8715
  - landing
8662
- - orders
8663
- - cr
8716
+ - tags
8717
+ - us
8718
+ - oneway
8664
8719
  expand: true
8665
8720
  no-source: true
8666
8721
  reports:
@@ -8669,13 +8724,13 @@ tasks:
8669
8724
  recipients:
8670
8725
  - estebanldh@gmail.com
8671
8726
  - nsimean@despegar.com
8672
- - name: landing.orders.pa
8727
+ - name: landing.tags.uy
8673
8728
  class_name: Henry::Task::CucumberTask
8674
8729
  options:
8675
8730
  tags:
8676
8731
  - landing
8677
- - orders
8678
- - pa
8732
+ - tags
8733
+ - uy
8679
8734
  expand: true
8680
8735
  no-source: true
8681
8736
  reports:
@@ -8684,13 +8739,14 @@ tasks:
8684
8739
  recipients:
8685
8740
  - estebanldh@gmail.com
8686
8741
  - nsimean@despegar.com
8687
- - name: landing.orders.ec
8742
+ - name: landing.tags.uy.roundtrip
8688
8743
  class_name: Henry::Task::CucumberTask
8689
8744
  options:
8690
8745
  tags:
8691
8746
  - landing
8692
- - orders
8693
- - ec
8747
+ - tags
8748
+ - uy
8749
+ - roundtrip
8694
8750
  expand: true
8695
8751
  no-source: true
8696
8752
  reports:
@@ -8699,13 +8755,14 @@ tasks:
8699
8755
  recipients:
8700
8756
  - estebanldh@gmail.com
8701
8757
  - nsimean@despegar.com
8702
- - name: landing.orders.mx
8758
+ - name: landing.tags.uy.oneway
8703
8759
  class_name: Henry::Task::CucumberTask
8704
8760
  options:
8705
8761
  tags:
8706
8762
  - landing
8707
- - orders
8708
- - mx
8763
+ - tags
8764
+ - uy
8765
+ - oneway
8709
8766
  expand: true
8710
8767
  no-source: true
8711
8768
  reports:
@@ -8714,13 +8771,13 @@ tasks:
8714
8771
  recipients:
8715
8772
  - estebanldh@gmail.com
8716
8773
  - nsimean@despegar.com
8717
- - name: landing.orders.pe
8774
+ - name: landing.tags.ve
8718
8775
  class_name: Henry::Task::CucumberTask
8719
8776
  options:
8720
8777
  tags:
8721
8778
  - landing
8722
- - orders
8723
- - pe
8779
+ - tags
8780
+ - ve
8724
8781
  expand: true
8725
8782
  no-source: true
8726
8783
  reports:
@@ -8729,13 +8786,14 @@ tasks:
8729
8786
  recipients:
8730
8787
  - estebanldh@gmail.com
8731
8788
  - nsimean@despegar.com
8732
- - name: landing.orders.uy
8789
+ - name: landing.tags.ve.roundtrip
8733
8790
  class_name: Henry::Task::CucumberTask
8734
8791
  options:
8735
8792
  tags:
8736
8793
  - landing
8737
- - orders
8738
- - uy
8794
+ - tags
8795
+ - ve
8796
+ - roundtrip
8739
8797
  expand: true
8740
8798
  no-source: true
8741
8799
  reports:
@@ -8744,13 +8802,14 @@ tasks:
8744
8802
  recipients:
8745
8803
  - estebanldh@gmail.com
8746
8804
  - nsimean@despegar.com
8747
- - name: landing.orders.us
8805
+ - name: landing.tags.ve.oneway
8748
8806
  class_name: Henry::Task::CucumberTask
8749
8807
  options:
8750
8808
  tags:
8751
8809
  - landing
8752
- - orders
8753
- - us
8810
+ - tags
8811
+ - ve
8812
+ - oneway
8754
8813
  expand: true
8755
8814
  no-source: true
8756
8815
  reports:
@@ -8759,13 +8818,12 @@ tasks:
8759
8818
  recipients:
8760
8819
  - estebanldh@gmail.com
8761
8820
  - nsimean@despegar.com
8762
- - name: landing.orders.ve
8821
+ - name: landing.filters
8763
8822
  class_name: Henry::Task::CucumberTask
8764
8823
  options:
8765
8824
  tags:
8766
8825
  - landing
8767
- - orders
8768
- - ve
8826
+ - filters
8769
8827
  expand: true
8770
8828
  no-source: true
8771
8829
  reports:
@@ -8774,12 +8832,13 @@ tasks:
8774
8832
  recipients:
8775
8833
  - estebanldh@gmail.com
8776
8834
  - nsimean@despegar.com
8777
- - name: landing.tags
8835
+ - name: landing.filters.ar
8778
8836
  class_name: Henry::Task::CucumberTask
8779
8837
  options:
8780
8838
  tags:
8781
8839
  - landing
8782
- - tags
8840
+ - filters
8841
+ - ar
8783
8842
  expand: true
8784
8843
  no-source: true
8785
8844
  reports:
@@ -8788,13 +8847,14 @@ tasks:
8788
8847
  recipients:
8789
8848
  - estebanldh@gmail.com
8790
8849
  - nsimean@despegar.com
8791
- - name: landing.tags.ar
8850
+ - name: landing.filters.ar.roundtrip
8792
8851
  class_name: Henry::Task::CucumberTask
8793
8852
  options:
8794
8853
  tags:
8795
8854
  - landing
8796
- - tags
8855
+ - filters
8797
8856
  - ar
8857
+ - roundtrip
8798
8858
  expand: true
8799
8859
  no-source: true
8800
8860
  reports:
@@ -8803,14 +8863,14 @@ tasks:
8803
8863
  recipients:
8804
8864
  - estebanldh@gmail.com
8805
8865
  - nsimean@despegar.com
8806
- - name: landing.tags.ar.roundtrip
8866
+ - name: landing.filters.ar.oneway
8807
8867
  class_name: Henry::Task::CucumberTask
8808
8868
  options:
8809
8869
  tags:
8810
8870
  - landing
8811
- - tags
8871
+ - filters
8812
8872
  - ar
8813
- - roundtrip
8873
+ - oneway
8814
8874
  expand: true
8815
8875
  no-source: true
8816
8876
  reports:
@@ -8819,14 +8879,13 @@ tasks:
8819
8879
  recipients:
8820
8880
  - estebanldh@gmail.com
8821
8881
  - nsimean@despegar.com
8822
- - name: landing.tags.ar.oneway
8882
+ - name: landing.filters.br
8823
8883
  class_name: Henry::Task::CucumberTask
8824
8884
  options:
8825
8885
  tags:
8826
8886
  - landing
8827
- - tags
8828
- - ar
8829
- - oneway
8887
+ - filters
8888
+ - br
8830
8889
  expand: true
8831
8890
  no-source: true
8832
8891
  reports:
@@ -8835,13 +8894,14 @@ tasks:
8835
8894
  recipients:
8836
8895
  - estebanldh@gmail.com
8837
8896
  - nsimean@despegar.com
8838
- - name: landing.tags.br
8897
+ - name: landing.filters.br.roundtrip
8839
8898
  class_name: Henry::Task::CucumberTask
8840
8899
  options:
8841
8900
  tags:
8842
8901
  - landing
8843
- - tags
8902
+ - filters
8844
8903
  - br
8904
+ - roundtrip
8845
8905
  expand: true
8846
8906
  no-source: true
8847
8907
  reports:
@@ -8850,14 +8910,14 @@ tasks:
8850
8910
  recipients:
8851
8911
  - estebanldh@gmail.com
8852
8912
  - nsimean@despegar.com
8853
- - name: landing.tags.br.roundtrip
8913
+ - name: landing.filters.br.oneway
8854
8914
  class_name: Henry::Task::CucumberTask
8855
8915
  options:
8856
8916
  tags:
8857
8917
  - landing
8858
- - tags
8918
+ - filters
8859
8919
  - br
8860
- - roundtrip
8920
+ - oneway
8861
8921
  expand: true
8862
8922
  no-source: true
8863
8923
  reports:
@@ -8866,14 +8926,13 @@ tasks:
8866
8926
  recipients:
8867
8927
  - estebanldh@gmail.com
8868
8928
  - nsimean@despegar.com
8869
- - name: landing.tags.br.oneway
8929
+ - name: landing.filters.mx
8870
8930
  class_name: Henry::Task::CucumberTask
8871
8931
  options:
8872
8932
  tags:
8873
8933
  - landing
8874
- - tags
8875
- - br
8876
- - oneway
8934
+ - filters
8935
+ - mx
8877
8936
  expand: true
8878
8937
  no-source: true
8879
8938
  reports:
@@ -8882,13 +8941,14 @@ tasks:
8882
8941
  recipients:
8883
8942
  - estebanldh@gmail.com
8884
8943
  - nsimean@despegar.com
8885
- - name: landing.tags.co
8944
+ - name: landing.filters.mx.roundtrip
8886
8945
  class_name: Henry::Task::CucumberTask
8887
8946
  options:
8888
8947
  tags:
8889
8948
  - landing
8890
- - tags
8891
- - co
8949
+ - filters
8950
+ - mx
8951
+ - roundtrip
8892
8952
  expand: true
8893
8953
  no-source: true
8894
8954
  reports:
@@ -8897,14 +8957,14 @@ tasks:
8897
8957
  recipients:
8898
8958
  - estebanldh@gmail.com
8899
8959
  - nsimean@despegar.com
8900
- - name: landing.tags.co.roundtrip
8960
+ - name: landing.filters.mx.oneway
8901
8961
  class_name: Henry::Task::CucumberTask
8902
8962
  options:
8903
8963
  tags:
8904
8964
  - landing
8905
- - tags
8906
- - co
8907
- - roundtrip
8965
+ - filters
8966
+ - mx
8967
+ - oneway
8908
8968
  expand: true
8909
8969
  no-source: true
8910
8970
  reports:
@@ -8913,14 +8973,13 @@ tasks:
8913
8973
  recipients:
8914
8974
  - estebanldh@gmail.com
8915
8975
  - nsimean@despegar.com
8916
- - name: landing.tags.co.oneway
8976
+ - name: landing.filters.us
8917
8977
  class_name: Henry::Task::CucumberTask
8918
8978
  options:
8919
8979
  tags:
8920
8980
  - landing
8921
- - tags
8922
- - co
8923
- - oneway
8981
+ - filters
8982
+ - us
8924
8983
  expand: true
8925
8984
  no-source: true
8926
8985
  reports:
@@ -8929,13 +8988,14 @@ tasks:
8929
8988
  recipients:
8930
8989
  - estebanldh@gmail.com
8931
8990
  - nsimean@despegar.com
8932
- - name: landing.tags.cl
8991
+ - name: landing.filters.us.roundtrip
8933
8992
  class_name: Henry::Task::CucumberTask
8934
8993
  options:
8935
8994
  tags:
8936
8995
  - landing
8937
- - tags
8938
- - cl
8996
+ - filters
8997
+ - us
8998
+ - roundtrip
8939
8999
  expand: true
8940
9000
  no-source: true
8941
9001
  reports:
@@ -8944,14 +9004,14 @@ tasks:
8944
9004
  recipients:
8945
9005
  - estebanldh@gmail.com
8946
9006
  - nsimean@despegar.com
8947
- - name: landing.tags.cl.roundtrip
9007
+ - name: landing.filters.us.oneway
8948
9008
  class_name: Henry::Task::CucumberTask
8949
9009
  options:
8950
9010
  tags:
8951
9011
  - landing
8952
- - tags
8953
- - cl
8954
- - roundtrip
9012
+ - filters
9013
+ - us
9014
+ - oneway
8955
9015
  expand: true
8956
9016
  no-source: true
8957
9017
  reports:
@@ -8960,14 +9020,12 @@ tasks:
8960
9020
  recipients:
8961
9021
  - estebanldh@gmail.com
8962
9022
  - nsimean@despegar.com
8963
- - name: landing.tags.cl.oneway
9023
+ - name: landing.pagination
8964
9024
  class_name: Henry::Task::CucumberTask
8965
9025
  options:
8966
9026
  tags:
8967
9027
  - landing
8968
- - tags
8969
- - cl
8970
- - oneway
9028
+ - pagination
8971
9029
  expand: true
8972
9030
  no-source: true
8973
9031
  reports:
@@ -8976,13 +9034,13 @@ tasks:
8976
9034
  recipients:
8977
9035
  - estebanldh@gmail.com
8978
9036
  - nsimean@despegar.com
8979
- - name: landing.tags.cr
9037
+ - name: landing.pagination.ar
8980
9038
  class_name: Henry::Task::CucumberTask
8981
9039
  options:
8982
9040
  tags:
8983
9041
  - landing
8984
- - tags
8985
- - cr
9042
+ - pagination
9043
+ - ar
8986
9044
  expand: true
8987
9045
  no-source: true
8988
9046
  reports:
@@ -8991,13 +9049,13 @@ tasks:
8991
9049
  recipients:
8992
9050
  - estebanldh@gmail.com
8993
9051
  - nsimean@despegar.com
8994
- - name: landing.tags.cr.roundtrip
9052
+ - name: landing.pagination.ar.roundtrip
8995
9053
  class_name: Henry::Task::CucumberTask
8996
9054
  options:
8997
9055
  tags:
8998
9056
  - landing
8999
- - tags
9000
- - cr
9057
+ - pagination
9058
+ - ar
9001
9059
  - roundtrip
9002
9060
  expand: true
9003
9061
  no-source: true
@@ -9007,13 +9065,13 @@ tasks:
9007
9065
  recipients:
9008
9066
  - estebanldh@gmail.com
9009
9067
  - nsimean@despegar.com
9010
- - name: landing.tags.cr.oneway
9068
+ - name: landing.pagination.ar.oneway
9011
9069
  class_name: Henry::Task::CucumberTask
9012
9070
  options:
9013
9071
  tags:
9014
9072
  - landing
9015
- - tags
9016
- - cr
9073
+ - pagination
9074
+ - ar
9017
9075
  - oneway
9018
9076
  expand: true
9019
9077
  no-source: true
@@ -9023,13 +9081,13 @@ tasks:
9023
9081
  recipients:
9024
9082
  - estebanldh@gmail.com
9025
9083
  - nsimean@despegar.com
9026
- - name: landing.tags.ec
9084
+ - name: landing.pagination.br
9027
9085
  class_name: Henry::Task::CucumberTask
9028
9086
  options:
9029
9087
  tags:
9030
9088
  - landing
9031
- - tags
9032
- - ec
9089
+ - pagination
9090
+ - br
9033
9091
  expand: true
9034
9092
  no-source: true
9035
9093
  reports:
@@ -9038,13 +9096,13 @@ tasks:
9038
9096
  recipients:
9039
9097
  - estebanldh@gmail.com
9040
9098
  - nsimean@despegar.com
9041
- - name: landing.tags.ec.roundtrip
9099
+ - name: landing.pagination.br.roundtrip
9042
9100
  class_name: Henry::Task::CucumberTask
9043
9101
  options:
9044
9102
  tags:
9045
9103
  - landing
9046
- - tags
9047
- - ec
9104
+ - pagination
9105
+ - br
9048
9106
  - roundtrip
9049
9107
  expand: true
9050
9108
  no-source: true
@@ -9054,13 +9112,13 @@ tasks:
9054
9112
  recipients:
9055
9113
  - estebanldh@gmail.com
9056
9114
  - nsimean@despegar.com
9057
- - name: landing.tags.ec.oneway
9115
+ - name: landing.pagination.br.oneway
9058
9116
  class_name: Henry::Task::CucumberTask
9059
9117
  options:
9060
9118
  tags:
9061
9119
  - landing
9062
- - tags
9063
- - ec
9120
+ - pagination
9121
+ - br
9064
9122
  - oneway
9065
9123
  expand: true
9066
9124
  no-source: true
@@ -9070,13 +9128,13 @@ tasks:
9070
9128
  recipients:
9071
9129
  - estebanldh@gmail.com
9072
9130
  - nsimean@despegar.com
9073
- - name: landing.tags.mx
9131
+ - name: landing.pagination.co
9074
9132
  class_name: Henry::Task::CucumberTask
9075
9133
  options:
9076
9134
  tags:
9077
9135
  - landing
9078
- - tags
9079
- - mx
9136
+ - pagination
9137
+ - co
9080
9138
  expand: true
9081
9139
  no-source: true
9082
9140
  reports:
@@ -9085,13 +9143,13 @@ tasks:
9085
9143
  recipients:
9086
9144
  - estebanldh@gmail.com
9087
9145
  - nsimean@despegar.com
9088
- - name: landing.tags.mx.roundtrip
9146
+ - name: landing.pagination.co.roundtrip
9089
9147
  class_name: Henry::Task::CucumberTask
9090
9148
  options:
9091
9149
  tags:
9092
9150
  - landing
9093
- - tags
9094
- - mx
9151
+ - pagination
9152
+ - co
9095
9153
  - roundtrip
9096
9154
  expand: true
9097
9155
  no-source: true
@@ -9101,13 +9159,13 @@ tasks:
9101
9159
  recipients:
9102
9160
  - estebanldh@gmail.com
9103
9161
  - nsimean@despegar.com
9104
- - name: landing.tags.mx.oneway
9162
+ - name: landing.pagination.co.oneway
9105
9163
  class_name: Henry::Task::CucumberTask
9106
9164
  options:
9107
9165
  tags:
9108
9166
  - landing
9109
- - tags
9110
- - mx
9167
+ - pagination
9168
+ - co
9111
9169
  - oneway
9112
9170
  expand: true
9113
9171
  no-source: true
@@ -9117,13 +9175,13 @@ tasks:
9117
9175
  recipients:
9118
9176
  - estebanldh@gmail.com
9119
9177
  - nsimean@despegar.com
9120
- - name: landing.tags.pa
9178
+ - name: landing.pagination.cl
9121
9179
  class_name: Henry::Task::CucumberTask
9122
9180
  options:
9123
9181
  tags:
9124
9182
  - landing
9125
- - tags
9126
- - pa
9183
+ - pagination
9184
+ - cl
9127
9185
  expand: true
9128
9186
  no-source: true
9129
9187
  reports:
@@ -9132,13 +9190,13 @@ tasks:
9132
9190
  recipients:
9133
9191
  - estebanldh@gmail.com
9134
9192
  - nsimean@despegar.com
9135
- - name: landing.tags.pa.roundtrip
9193
+ - name: landing.pagination.cl.roundtrip
9136
9194
  class_name: Henry::Task::CucumberTask
9137
9195
  options:
9138
9196
  tags:
9139
9197
  - landing
9140
- - tags
9141
- - pa
9198
+ - pagination
9199
+ - cl
9142
9200
  - roundtrip
9143
9201
  expand: true
9144
9202
  no-source: true
@@ -9148,13 +9206,13 @@ tasks:
9148
9206
  recipients:
9149
9207
  - estebanldh@gmail.com
9150
9208
  - nsimean@despegar.com
9151
- - name: landing.tags.pa.oneway
9209
+ - name: landing.pagination.cl.oneway
9152
9210
  class_name: Henry::Task::CucumberTask
9153
9211
  options:
9154
9212
  tags:
9155
9213
  - landing
9156
- - tags
9157
- - pa
9214
+ - pagination
9215
+ - cl
9158
9216
  - oneway
9159
9217
  expand: true
9160
9218
  no-source: true
@@ -9164,13 +9222,13 @@ tasks:
9164
9222
  recipients:
9165
9223
  - estebanldh@gmail.com
9166
9224
  - nsimean@despegar.com
9167
- - name: landing.tags.pe
9225
+ - name: landing.pagination.cr
9168
9226
  class_name: Henry::Task::CucumberTask
9169
9227
  options:
9170
9228
  tags:
9171
9229
  - landing
9172
- - tags
9173
- - pe
9230
+ - pagination
9231
+ - cr
9174
9232
  expand: true
9175
9233
  no-source: true
9176
9234
  reports:
@@ -9179,13 +9237,13 @@ tasks:
9179
9237
  recipients:
9180
9238
  - estebanldh@gmail.com
9181
9239
  - nsimean@despegar.com
9182
- - name: landing.tags.pe.roundtrip
9240
+ - name: landing.pagination.cr.roundtrip
9183
9241
  class_name: Henry::Task::CucumberTask
9184
9242
  options:
9185
9243
  tags:
9186
9244
  - landing
9187
- - tags
9188
- - pe
9245
+ - pagination
9246
+ - cr
9189
9247
  - roundtrip
9190
9248
  expand: true
9191
9249
  no-source: true
@@ -9195,13 +9253,13 @@ tasks:
9195
9253
  recipients:
9196
9254
  - estebanldh@gmail.com
9197
9255
  - nsimean@despegar.com
9198
- - name: landing.tags.pe.oneway
9256
+ - name: landing.pagination.cr.oneway
9199
9257
  class_name: Henry::Task::CucumberTask
9200
9258
  options:
9201
9259
  tags:
9202
9260
  - landing
9203
- - tags
9204
- - pe
9261
+ - pagination
9262
+ - cr
9205
9263
  - oneway
9206
9264
  expand: true
9207
9265
  no-source: true
@@ -9211,13 +9269,13 @@ tasks:
9211
9269
  recipients:
9212
9270
  - estebanldh@gmail.com
9213
9271
  - nsimean@despegar.com
9214
- - name: landing.tags.us
9272
+ - name: landing.pagination.ec
9215
9273
  class_name: Henry::Task::CucumberTask
9216
9274
  options:
9217
9275
  tags:
9218
9276
  - landing
9219
- - tags
9220
- - us
9277
+ - pagination
9278
+ - ec
9221
9279
  expand: true
9222
9280
  no-source: true
9223
9281
  reports:
@@ -9226,13 +9284,13 @@ tasks:
9226
9284
  recipients:
9227
9285
  - estebanldh@gmail.com
9228
9286
  - nsimean@despegar.com
9229
- - name: landing.tags.us.roundtrip
9287
+ - name: landing.pagination.ec.roundtrip
9230
9288
  class_name: Henry::Task::CucumberTask
9231
9289
  options:
9232
9290
  tags:
9233
9291
  - landing
9234
- - tags
9235
- - us
9292
+ - pagination
9293
+ - ec
9236
9294
  - roundtrip
9237
9295
  expand: true
9238
9296
  no-source: true
@@ -9242,13 +9300,13 @@ tasks:
9242
9300
  recipients:
9243
9301
  - estebanldh@gmail.com
9244
9302
  - nsimean@despegar.com
9245
- - name: landing.tags.us.oneway
9303
+ - name: landing.pagination.ec.oneway
9246
9304
  class_name: Henry::Task::CucumberTask
9247
9305
  options:
9248
9306
  tags:
9249
9307
  - landing
9250
- - tags
9251
- - us
9308
+ - pagination
9309
+ - ec
9252
9310
  - oneway
9253
9311
  expand: true
9254
9312
  no-source: true
@@ -9258,13 +9316,13 @@ tasks:
9258
9316
  recipients:
9259
9317
  - estebanldh@gmail.com
9260
9318
  - nsimean@despegar.com
9261
- - name: landing.tags.uy
9319
+ - name: landing.pagination.mx
9262
9320
  class_name: Henry::Task::CucumberTask
9263
9321
  options:
9264
9322
  tags:
9265
9323
  - landing
9266
- - tags
9267
- - uy
9324
+ - pagination
9325
+ - mx
9268
9326
  expand: true
9269
9327
  no-source: true
9270
9328
  reports:
@@ -9273,13 +9331,13 @@ tasks:
9273
9331
  recipients:
9274
9332
  - estebanldh@gmail.com
9275
9333
  - nsimean@despegar.com
9276
- - name: landing.tags.uy.roundtrip
9334
+ - name: landing.pagination.mx.roundtrip
9277
9335
  class_name: Henry::Task::CucumberTask
9278
9336
  options:
9279
9337
  tags:
9280
9338
  - landing
9281
- - tags
9282
- - uy
9339
+ - pagination
9340
+ - mx
9283
9341
  - roundtrip
9284
9342
  expand: true
9285
9343
  no-source: true
@@ -9289,13 +9347,13 @@ tasks:
9289
9347
  recipients:
9290
9348
  - estebanldh@gmail.com
9291
9349
  - nsimean@despegar.com
9292
- - name: landing.tags.uy.oneway
9350
+ - name: landing.pagination.mx.oneway
9293
9351
  class_name: Henry::Task::CucumberTask
9294
9352
  options:
9295
9353
  tags:
9296
9354
  - landing
9297
- - tags
9298
- - uy
9355
+ - pagination
9356
+ - mx
9299
9357
  - oneway
9300
9358
  expand: true
9301
9359
  no-source: true
@@ -9305,13 +9363,13 @@ tasks:
9305
9363
  recipients:
9306
9364
  - estebanldh@gmail.com
9307
9365
  - nsimean@despegar.com
9308
- - name: landing.tags.ve
9366
+ - name: landing.pagination.pa
9309
9367
  class_name: Henry::Task::CucumberTask
9310
9368
  options:
9311
9369
  tags:
9312
9370
  - landing
9313
- - tags
9314
- - ve
9371
+ - pagination
9372
+ - pa
9315
9373
  expand: true
9316
9374
  no-source: true
9317
9375
  reports:
@@ -9320,13 +9378,13 @@ tasks:
9320
9378
  recipients:
9321
9379
  - estebanldh@gmail.com
9322
9380
  - nsimean@despegar.com
9323
- - name: landing.tags.ve.roundtrip
9381
+ - name: landing.pagination.pa.roundtrip
9324
9382
  class_name: Henry::Task::CucumberTask
9325
9383
  options:
9326
9384
  tags:
9327
9385
  - landing
9328
- - tags
9329
- - ve
9386
+ - pagination
9387
+ - pa
9330
9388
  - roundtrip
9331
9389
  expand: true
9332
9390
  no-source: true
@@ -9336,13 +9394,13 @@ tasks:
9336
9394
  recipients:
9337
9395
  - estebanldh@gmail.com
9338
9396
  - nsimean@despegar.com
9339
- - name: landing.tags.ve.oneway
9397
+ - name: landing.pagination.pa.oneway
9340
9398
  class_name: Henry::Task::CucumberTask
9341
9399
  options:
9342
9400
  tags:
9343
9401
  - landing
9344
- - tags
9345
- - ve
9402
+ - pagination
9403
+ - pa
9346
9404
  - oneway
9347
9405
  expand: true
9348
9406
  no-source: true
@@ -9352,27 +9410,13 @@ tasks:
9352
9410
  recipients:
9353
9411
  - estebanldh@gmail.com
9354
9412
  - nsimean@despegar.com
9355
- - name: landing.filters
9356
- class_name: Henry::Task::CucumberTask
9357
- options:
9358
- tags:
9359
- - landing
9360
- - filters
9361
- expand: true
9362
- no-source: true
9363
- reports:
9364
- - format: html
9365
- name: ${DATE}_${TASK_NAME}.html
9366
- recipients:
9367
- - estebanldh@gmail.com
9368
- - nsimean@despegar.com
9369
- - name: landing.filters.ar
9413
+ - name: landing.pagination.pe
9370
9414
  class_name: Henry::Task::CucumberTask
9371
9415
  options:
9372
9416
  tags:
9373
9417
  - landing
9374
- - filters
9375
- - ar
9418
+ - pagination
9419
+ - pe
9376
9420
  expand: true
9377
9421
  no-source: true
9378
9422
  reports:
@@ -9381,13 +9425,13 @@ tasks:
9381
9425
  recipients:
9382
9426
  - estebanldh@gmail.com
9383
9427
  - nsimean@despegar.com
9384
- - name: landing.filters.ar.roundtrip
9428
+ - name: landing.pagination.pe.roundtrip
9385
9429
  class_name: Henry::Task::CucumberTask
9386
9430
  options:
9387
9431
  tags:
9388
9432
  - landing
9389
- - filters
9390
- - ar
9433
+ - pagination
9434
+ - pe
9391
9435
  - roundtrip
9392
9436
  expand: true
9393
9437
  no-source: true
@@ -9397,13 +9441,13 @@ tasks:
9397
9441
  recipients:
9398
9442
  - estebanldh@gmail.com
9399
9443
  - nsimean@despegar.com
9400
- - name: landing.filters.ar.oneway
9444
+ - name: landing.pagination.pe.oneway
9401
9445
  class_name: Henry::Task::CucumberTask
9402
9446
  options:
9403
9447
  tags:
9404
9448
  - landing
9405
- - filters
9406
- - ar
9449
+ - pagination
9450
+ - pe
9407
9451
  - oneway
9408
9452
  expand: true
9409
9453
  no-source: true
@@ -9413,13 +9457,13 @@ tasks:
9413
9457
  recipients:
9414
9458
  - estebanldh@gmail.com
9415
9459
  - nsimean@despegar.com
9416
- - name: landing.filters.br
9460
+ - name: landing.pagination.us
9417
9461
  class_name: Henry::Task::CucumberTask
9418
9462
  options:
9419
9463
  tags:
9420
9464
  - landing
9421
- - filters
9422
- - br
9465
+ - pagination
9466
+ - us
9423
9467
  expand: true
9424
9468
  no-source: true
9425
9469
  reports:
@@ -9428,13 +9472,13 @@ tasks:
9428
9472
  recipients:
9429
9473
  - estebanldh@gmail.com
9430
9474
  - nsimean@despegar.com
9431
- - name: landing.filters.br.roundtrip
9475
+ - name: landing.pagination.us.roundtrip
9432
9476
  class_name: Henry::Task::CucumberTask
9433
9477
  options:
9434
9478
  tags:
9435
9479
  - landing
9436
- - filters
9437
- - br
9480
+ - pagination
9481
+ - us
9438
9482
  - roundtrip
9439
9483
  expand: true
9440
9484
  no-source: true
@@ -9444,13 +9488,13 @@ tasks:
9444
9488
  recipients:
9445
9489
  - estebanldh@gmail.com
9446
9490
  - nsimean@despegar.com
9447
- - name: landing.filters.br.oneway
9491
+ - name: landing.pagination.us.oneway
9448
9492
  class_name: Henry::Task::CucumberTask
9449
9493
  options:
9450
9494
  tags:
9451
9495
  - landing
9452
- - filters
9453
- - br
9496
+ - pagination
9497
+ - us
9454
9498
  - oneway
9455
9499
  expand: true
9456
9500
  no-source: true
@@ -9460,13 +9504,13 @@ tasks:
9460
9504
  recipients:
9461
9505
  - estebanldh@gmail.com
9462
9506
  - nsimean@despegar.com
9463
- - name: landing.filters.mx
9507
+ - name: landing.pagination.uy
9464
9508
  class_name: Henry::Task::CucumberTask
9465
9509
  options:
9466
9510
  tags:
9467
9511
  - landing
9468
- - filters
9469
- - mx
9512
+ - pagination
9513
+ - uy
9470
9514
  expand: true
9471
9515
  no-source: true
9472
9516
  reports:
@@ -9475,13 +9519,13 @@ tasks:
9475
9519
  recipients:
9476
9520
  - estebanldh@gmail.com
9477
9521
  - nsimean@despegar.com
9478
- - name: landing.filters.mx.roundtrip
9522
+ - name: landing.pagination.uy.roundtrip
9479
9523
  class_name: Henry::Task::CucumberTask
9480
9524
  options:
9481
9525
  tags:
9482
9526
  - landing
9483
- - filters
9484
- - mx
9527
+ - pagination
9528
+ - uy
9485
9529
  - roundtrip
9486
9530
  expand: true
9487
9531
  no-source: true
@@ -9491,13 +9535,13 @@ tasks:
9491
9535
  recipients:
9492
9536
  - estebanldh@gmail.com
9493
9537
  - nsimean@despegar.com
9494
- - name: landing.filters.mx.oneway
9538
+ - name: landing.pagination.uy.oneway
9495
9539
  class_name: Henry::Task::CucumberTask
9496
9540
  options:
9497
9541
  tags:
9498
9542
  - landing
9499
- - filters
9500
- - mx
9543
+ - pagination
9544
+ - uy
9501
9545
  - oneway
9502
9546
  expand: true
9503
9547
  no-source: true
@@ -9507,13 +9551,13 @@ tasks:
9507
9551
  recipients:
9508
9552
  - estebanldh@gmail.com
9509
9553
  - nsimean@despegar.com
9510
- - name: landing.filters.us
9554
+ - name: landing.pagination.ve
9511
9555
  class_name: Henry::Task::CucumberTask
9512
9556
  options:
9513
9557
  tags:
9514
9558
  - landing
9515
- - filters
9516
- - us
9559
+ - pagination
9560
+ - ve
9517
9561
  expand: true
9518
9562
  no-source: true
9519
9563
  reports:
@@ -9522,13 +9566,13 @@ tasks:
9522
9566
  recipients:
9523
9567
  - estebanldh@gmail.com
9524
9568
  - nsimean@despegar.com
9525
- - name: landing.filters.us.roundtrip
9569
+ - name: landing.pagination.ve.roundtrip
9526
9570
  class_name: Henry::Task::CucumberTask
9527
9571
  options:
9528
9572
  tags:
9529
9573
  - landing
9530
- - filters
9531
- - us
9574
+ - pagination
9575
+ - ve
9532
9576
  - roundtrip
9533
9577
  expand: true
9534
9578
  no-source: true
@@ -9538,13 +9582,13 @@ tasks:
9538
9582
  recipients:
9539
9583
  - estebanldh@gmail.com
9540
9584
  - nsimean@despegar.com
9541
- - name: landing.filters.us.oneway
9585
+ - name: landing.pagination.ve.oneway
9542
9586
  class_name: Henry::Task::CucumberTask
9543
9587
  options:
9544
9588
  tags:
9545
9589
  - landing
9546
- - filters
9547
- - us
9590
+ - pagination
9591
+ - ve
9548
9592
  - oneway
9549
9593
  expand: true
9550
9594
  no-source: true
@@ -9554,12 +9598,12 @@ tasks:
9554
9598
  recipients:
9555
9599
  - estebanldh@gmail.com
9556
9600
  - nsimean@despegar.com
9557
- - name: landing.pagination
9601
+ - name: checkout.compra_duplicada
9558
9602
  class_name: Henry::Task::CucumberTask
9559
9603
  options:
9560
9604
  tags:
9561
- - landing
9562
- - pagination
9605
+ - checkout
9606
+ - compra_duplicada
9563
9607
  expand: true
9564
9608
  no-source: true
9565
9609
  reports:
@@ -9568,12 +9612,12 @@ tasks:
9568
9612
  recipients:
9569
9613
  - estebanldh@gmail.com
9570
9614
  - nsimean@despegar.com
9571
- - name: landing.pagination.ar
9615
+ - name: checkout.compra_duplicada.ar
9572
9616
  class_name: Henry::Task::CucumberTask
9573
9617
  options:
9574
9618
  tags:
9575
- - landing
9576
- - pagination
9619
+ - checkout
9620
+ - compra_duplicada
9577
9621
  - ar
9578
9622
  expand: true
9579
9623
  no-source: true
@@ -9583,12 +9627,12 @@ tasks:
9583
9627
  recipients:
9584
9628
  - estebanldh@gmail.com
9585
9629
  - nsimean@despegar.com
9586
- - name: landing.pagination.ar.roundtrip
9630
+ - name: checkout.compra_duplicada.ar.roundtrip
9587
9631
  class_name: Henry::Task::CucumberTask
9588
9632
  options:
9589
9633
  tags:
9590
- - landing
9591
- - pagination
9634
+ - checkout
9635
+ - compra_duplicada
9592
9636
  - ar
9593
9637
  - roundtrip
9594
9638
  expand: true
@@ -9599,12 +9643,12 @@ tasks:
9599
9643
  recipients:
9600
9644
  - estebanldh@gmail.com
9601
9645
  - nsimean@despegar.com
9602
- - name: landing.pagination.ar.oneway
9646
+ - name: checkout.compra_duplicada.ar.oneway
9603
9647
  class_name: Henry::Task::CucumberTask
9604
9648
  options:
9605
9649
  tags:
9606
- - landing
9607
- - pagination
9650
+ - checkout
9651
+ - compra_duplicada
9608
9652
  - ar
9609
9653
  - oneway
9610
9654
  expand: true
@@ -9615,13 +9659,14 @@ tasks:
9615
9659
  recipients:
9616
9660
  - estebanldh@gmail.com
9617
9661
  - nsimean@despegar.com
9618
- - name: landing.pagination.br
9662
+ - name: checkout.compra_duplicada.ar.multipledestinations
9619
9663
  class_name: Henry::Task::CucumberTask
9620
9664
  options:
9621
9665
  tags:
9622
- - landing
9623
- - pagination
9624
- - br
9666
+ - checkout
9667
+ - compra_duplicada
9668
+ - ar
9669
+ - multipledestinations
9625
9670
  expand: true
9626
9671
  no-source: true
9627
9672
  reports:
@@ -9630,14 +9675,13 @@ tasks:
9630
9675
  recipients:
9631
9676
  - estebanldh@gmail.com
9632
9677
  - nsimean@despegar.com
9633
- - name: landing.pagination.br.roundtrip
9678
+ - name: checkout.compra_duplicada.mx
9634
9679
  class_name: Henry::Task::CucumberTask
9635
9680
  options:
9636
9681
  tags:
9637
- - landing
9638
- - pagination
9639
- - br
9640
- - roundtrip
9682
+ - checkout
9683
+ - compra_duplicada
9684
+ - mx
9641
9685
  expand: true
9642
9686
  no-source: true
9643
9687
  reports:
@@ -9646,14 +9690,14 @@ tasks:
9646
9690
  recipients:
9647
9691
  - estebanldh@gmail.com
9648
9692
  - nsimean@despegar.com
9649
- - name: landing.pagination.br.oneway
9693
+ - name: checkout.compra_duplicada.mx.roundtrip
9650
9694
  class_name: Henry::Task::CucumberTask
9651
9695
  options:
9652
9696
  tags:
9653
- - landing
9654
- - pagination
9655
- - br
9656
- - oneway
9697
+ - checkout
9698
+ - compra_duplicada
9699
+ - mx
9700
+ - roundtrip
9657
9701
  expand: true
9658
9702
  no-source: true
9659
9703
  reports:
@@ -9662,13 +9706,14 @@ tasks:
9662
9706
  recipients:
9663
9707
  - estebanldh@gmail.com
9664
9708
  - nsimean@despegar.com
9665
- - name: landing.pagination.co
9709
+ - name: checkout.compra_duplicada.mx.oneway
9666
9710
  class_name: Henry::Task::CucumberTask
9667
9711
  options:
9668
9712
  tags:
9669
- - landing
9670
- - pagination
9671
- - co
9713
+ - checkout
9714
+ - compra_duplicada
9715
+ - mx
9716
+ - oneway
9672
9717
  expand: true
9673
9718
  no-source: true
9674
9719
  reports:
@@ -9677,14 +9722,14 @@ tasks:
9677
9722
  recipients:
9678
9723
  - estebanldh@gmail.com
9679
9724
  - nsimean@despegar.com
9680
- - name: landing.pagination.co.roundtrip
9725
+ - name: checkout.compra_duplicada.mx.multipledestinations
9681
9726
  class_name: Henry::Task::CucumberTask
9682
9727
  options:
9683
9728
  tags:
9684
- - landing
9685
- - pagination
9686
- - co
9687
- - roundtrip
9729
+ - checkout
9730
+ - compra_duplicada
9731
+ - mx
9732
+ - multipledestinations
9688
9733
  expand: true
9689
9734
  no-source: true
9690
9735
  reports:
@@ -9693,14 +9738,13 @@ tasks:
9693
9738
  recipients:
9694
9739
  - estebanldh@gmail.com
9695
9740
  - nsimean@despegar.com
9696
- - name: landing.pagination.co.oneway
9741
+ - name: checkout.compra_duplicada.us
9697
9742
  class_name: Henry::Task::CucumberTask
9698
9743
  options:
9699
9744
  tags:
9700
- - landing
9701
- - pagination
9702
- - co
9703
- - oneway
9745
+ - checkout
9746
+ - compra_duplicada
9747
+ - us
9704
9748
  expand: true
9705
9749
  no-source: true
9706
9750
  reports:
@@ -9709,14 +9753,15 @@ tasks:
9709
9753
  recipients:
9710
9754
  - estebanldh@gmail.com
9711
9755
  - nsimean@despegar.com
9712
- - name: landing.pagination.cl
9756
+ - name: checkout.compra_duplicada.us.roundtrip
9713
9757
  class_name: Henry::Task::CucumberTask
9714
9758
  options:
9715
9759
  tags:
9716
- - landing
9717
- - pagination
9718
- - cl
9719
- expand: true
9760
+ - checkout
9761
+ - compra_duplicada
9762
+ - us
9763
+ - roundtrip
9764
+ expand: true
9720
9765
  no-source: true
9721
9766
  reports:
9722
9767
  - format: html
@@ -9724,14 +9769,14 @@ tasks:
9724
9769
  recipients:
9725
9770
  - estebanldh@gmail.com
9726
9771
  - nsimean@despegar.com
9727
- - name: landing.pagination.cl.roundtrip
9772
+ - name: checkout.compra_duplicada.us.oneway
9728
9773
  class_name: Henry::Task::CucumberTask
9729
9774
  options:
9730
9775
  tags:
9731
- - landing
9732
- - pagination
9733
- - cl
9734
- - roundtrip
9776
+ - checkout
9777
+ - compra_duplicada
9778
+ - us
9779
+ - oneway
9735
9780
  expand: true
9736
9781
  no-source: true
9737
9782
  reports:
@@ -9740,14 +9785,14 @@ tasks:
9740
9785
  recipients:
9741
9786
  - estebanldh@gmail.com
9742
9787
  - nsimean@despegar.com
9743
- - name: landing.pagination.cl.oneway
9788
+ - name: checkout.compra_duplicada.us.multipledestinations
9744
9789
  class_name: Henry::Task::CucumberTask
9745
9790
  options:
9746
9791
  tags:
9747
- - landing
9748
- - pagination
9749
- - cl
9750
- - oneway
9792
+ - checkout
9793
+ - compra_duplicada
9794
+ - us
9795
+ - multipledestinations
9751
9796
  expand: true
9752
9797
  no-source: true
9753
9798
  reports:
@@ -9756,13 +9801,13 @@ tasks:
9756
9801
  recipients:
9757
9802
  - estebanldh@gmail.com
9758
9803
  - nsimean@despegar.com
9759
- - name: landing.pagination.cr
9804
+ - name: checkout.compra_duplicada.br
9760
9805
  class_name: Henry::Task::CucumberTask
9761
9806
  options:
9762
9807
  tags:
9763
- - landing
9764
- - pagination
9765
- - cr
9808
+ - checkout
9809
+ - compra_duplicada
9810
+ - br
9766
9811
  expand: true
9767
9812
  no-source: true
9768
9813
  reports:
@@ -9771,13 +9816,13 @@ tasks:
9771
9816
  recipients:
9772
9817
  - estebanldh@gmail.com
9773
9818
  - nsimean@despegar.com
9774
- - name: landing.pagination.cr.roundtrip
9819
+ - name: checkout.compra_duplicada.br.roundtrip
9775
9820
  class_name: Henry::Task::CucumberTask
9776
9821
  options:
9777
9822
  tags:
9778
- - landing
9779
- - pagination
9780
- - cr
9823
+ - checkout
9824
+ - compra_duplicada
9825
+ - br
9781
9826
  - roundtrip
9782
9827
  expand: true
9783
9828
  no-source: true
@@ -9787,13 +9832,13 @@ tasks:
9787
9832
  recipients:
9788
9833
  - estebanldh@gmail.com
9789
9834
  - nsimean@despegar.com
9790
- - name: landing.pagination.cr.oneway
9835
+ - name: checkout.compra_duplicada.br.oneway
9791
9836
  class_name: Henry::Task::CucumberTask
9792
9837
  options:
9793
9838
  tags:
9794
- - landing
9795
- - pagination
9796
- - cr
9839
+ - checkout
9840
+ - compra_duplicada
9841
+ - br
9797
9842
  - oneway
9798
9843
  expand: true
9799
9844
  no-source: true
@@ -9803,13 +9848,14 @@ tasks:
9803
9848
  recipients:
9804
9849
  - estebanldh@gmail.com
9805
9850
  - nsimean@despegar.com
9806
- - name: landing.pagination.ec
9851
+ - name: checkout.compra_duplicada.br.multipledestinations
9807
9852
  class_name: Henry::Task::CucumberTask
9808
9853
  options:
9809
9854
  tags:
9810
- - landing
9811
- - pagination
9812
- - ec
9855
+ - checkout
9856
+ - compra_duplicada
9857
+ - br
9858
+ - multipledestinations
9813
9859
  expand: true
9814
9860
  no-source: true
9815
9861
  reports:
@@ -9818,14 +9864,12 @@ tasks:
9818
9864
  recipients:
9819
9865
  - estebanldh@gmail.com
9820
9866
  - nsimean@despegar.com
9821
- - name: landing.pagination.ec.roundtrip
9867
+ - name: checkout.cac
9822
9868
  class_name: Henry::Task::CucumberTask
9823
9869
  options:
9824
9870
  tags:
9825
- - landing
9826
- - pagination
9827
- - ec
9828
- - roundtrip
9871
+ - checkout
9872
+ - cac
9829
9873
  expand: true
9830
9874
  no-source: true
9831
9875
  reports:
@@ -9834,14 +9878,13 @@ tasks:
9834
9878
  recipients:
9835
9879
  - estebanldh@gmail.com
9836
9880
  - nsimean@despegar.com
9837
- - name: landing.pagination.ec.oneway
9881
+ - name: checkout.cac.ar
9838
9882
  class_name: Henry::Task::CucumberTask
9839
9883
  options:
9840
9884
  tags:
9841
- - landing
9842
- - pagination
9843
- - ec
9844
- - oneway
9885
+ - checkout
9886
+ - cac
9887
+ - ar
9845
9888
  expand: true
9846
9889
  no-source: true
9847
9890
  reports:
@@ -9850,13 +9893,14 @@ tasks:
9850
9893
  recipients:
9851
9894
  - estebanldh@gmail.com
9852
9895
  - nsimean@despegar.com
9853
- - name: landing.pagination.mx
9896
+ - name: checkout.cac.ar.roundtrip
9854
9897
  class_name: Henry::Task::CucumberTask
9855
9898
  options:
9856
9899
  tags:
9857
- - landing
9858
- - pagination
9859
- - mx
9900
+ - checkout
9901
+ - cac
9902
+ - ar
9903
+ - roundtrip
9860
9904
  expand: true
9861
9905
  no-source: true
9862
9906
  reports:
@@ -9865,14 +9909,14 @@ tasks:
9865
9909
  recipients:
9866
9910
  - estebanldh@gmail.com
9867
9911
  - nsimean@despegar.com
9868
- - name: landing.pagination.mx.roundtrip
9912
+ - name: checkout.cac.ar.oneway
9869
9913
  class_name: Henry::Task::CucumberTask
9870
9914
  options:
9871
9915
  tags:
9872
- - landing
9873
- - pagination
9874
- - mx
9875
- - roundtrip
9916
+ - checkout
9917
+ - cac
9918
+ - ar
9919
+ - oneway
9876
9920
  expand: true
9877
9921
  no-source: true
9878
9922
  reports:
@@ -9881,14 +9925,14 @@ tasks:
9881
9925
  recipients:
9882
9926
  - estebanldh@gmail.com
9883
9927
  - nsimean@despegar.com
9884
- - name: landing.pagination.mx.oneway
9928
+ - name: checkout.cac.ar.multipledestinations
9885
9929
  class_name: Henry::Task::CucumberTask
9886
9930
  options:
9887
9931
  tags:
9888
- - landing
9889
- - pagination
9890
- - mx
9891
- - oneway
9932
+ - checkout
9933
+ - cac
9934
+ - ar
9935
+ - multipledestinations
9892
9936
  expand: true
9893
9937
  no-source: true
9894
9938
  reports:
@@ -9897,13 +9941,13 @@ tasks:
9897
9941
  recipients:
9898
9942
  - estebanldh@gmail.com
9899
9943
  - nsimean@despegar.com
9900
- - name: landing.pagination.pa
9944
+ - name: checkout.cac.br
9901
9945
  class_name: Henry::Task::CucumberTask
9902
9946
  options:
9903
9947
  tags:
9904
- - landing
9905
- - pagination
9906
- - pa
9948
+ - checkout
9949
+ - cac
9950
+ - br
9907
9951
  expand: true
9908
9952
  no-source: true
9909
9953
  reports:
@@ -9912,13 +9956,13 @@ tasks:
9912
9956
  recipients:
9913
9957
  - estebanldh@gmail.com
9914
9958
  - nsimean@despegar.com
9915
- - name: landing.pagination.pa.roundtrip
9959
+ - name: checkout.cac.br.roundtrip
9916
9960
  class_name: Henry::Task::CucumberTask
9917
9961
  options:
9918
9962
  tags:
9919
- - landing
9920
- - pagination
9921
- - pa
9963
+ - checkout
9964
+ - cac
9965
+ - br
9922
9966
  - roundtrip
9923
9967
  expand: true
9924
9968
  no-source: true
@@ -9928,13 +9972,13 @@ tasks:
9928
9972
  recipients:
9929
9973
  - estebanldh@gmail.com
9930
9974
  - nsimean@despegar.com
9931
- - name: landing.pagination.pa.oneway
9975
+ - name: checkout.cac.br.oneway
9932
9976
  class_name: Henry::Task::CucumberTask
9933
9977
  options:
9934
9978
  tags:
9935
- - landing
9936
- - pagination
9937
- - pa
9979
+ - checkout
9980
+ - cac
9981
+ - br
9938
9982
  - oneway
9939
9983
  expand: true
9940
9984
  no-source: true
@@ -9944,13 +9988,14 @@ tasks:
9944
9988
  recipients:
9945
9989
  - estebanldh@gmail.com
9946
9990
  - nsimean@despegar.com
9947
- - name: landing.pagination.pe
9991
+ - name: checkout.cac.br.roundtrip
9948
9992
  class_name: Henry::Task::CucumberTask
9949
9993
  options:
9950
9994
  tags:
9951
- - landing
9952
- - pagination
9953
- - pe
9995
+ - checkout
9996
+ - cac
9997
+ - br
9998
+ - roundtrip
9954
9999
  expand: true
9955
10000
  no-source: true
9956
10001
  reports:
@@ -9959,14 +10004,12 @@ tasks:
9959
10004
  recipients:
9960
10005
  - estebanldh@gmail.com
9961
10006
  - nsimean@despegar.com
9962
- - name: landing.pagination.pe.roundtrip
10007
+ - name: results.search_2_ow
9963
10008
  class_name: Henry::Task::CucumberTask
9964
10009
  options:
9965
10010
  tags:
9966
- - landing
9967
- - pagination
9968
- - pe
9969
- - roundtrip
10011
+ - results
10012
+ - search_2_ow
9970
10013
  expand: true
9971
10014
  no-source: true
9972
10015
  reports:
@@ -9975,14 +10018,13 @@ tasks:
9975
10018
  recipients:
9976
10019
  - estebanldh@gmail.com
9977
10020
  - nsimean@despegar.com
9978
- - name: landing.pagination.pe.oneway
10021
+ - name: results.search_2_ow.br
9979
10022
  class_name: Henry::Task::CucumberTask
9980
10023
  options:
9981
10024
  tags:
9982
- - landing
9983
- - pagination
9984
- - pe
9985
- - oneway
10025
+ - results
10026
+ - search_2_ow
10027
+ - br
9986
10028
  expand: true
9987
10029
  no-source: true
9988
10030
  reports:
@@ -9991,13 +10033,13 @@ tasks:
9991
10033
  recipients:
9992
10034
  - estebanldh@gmail.com
9993
10035
  - nsimean@despegar.com
9994
- - name: landing.pagination.us
10036
+ - name: results.search_2_ow.br
9995
10037
  class_name: Henry::Task::CucumberTask
9996
10038
  options:
9997
10039
  tags:
9998
- - landing
9999
- - pagination
10000
- - us
10040
+ - results
10041
+ - search_2_ow
10042
+ - br
10001
10043
  expand: true
10002
10044
  no-source: true
10003
10045
  reports:
@@ -10006,14 +10048,13 @@ tasks:
10006
10048
  recipients:
10007
10049
  - estebanldh@gmail.com
10008
10050
  - nsimean@despegar.com
10009
- - name: landing.pagination.us.roundtrip
10051
+ - name: results.search_2_ow.br
10010
10052
  class_name: Henry::Task::CucumberTask
10011
10053
  options:
10012
10054
  tags:
10013
- - landing
10014
- - pagination
10015
- - us
10016
- - roundtrip
10055
+ - results
10056
+ - search_2_ow
10057
+ - br
10017
10058
  expand: true
10018
10059
  no-source: true
10019
10060
  reports:
@@ -10022,14 +10063,13 @@ tasks:
10022
10063
  recipients:
10023
10064
  - estebanldh@gmail.com
10024
10065
  - nsimean@despegar.com
10025
- - name: landing.pagination.us.oneway
10066
+ - name: results.search_2_ow.ar
10026
10067
  class_name: Henry::Task::CucumberTask
10027
10068
  options:
10028
10069
  tags:
10029
- - landing
10030
- - pagination
10031
- - us
10032
- - oneway
10070
+ - results
10071
+ - search_2_ow
10072
+ - ar
10033
10073
  expand: true
10034
10074
  no-source: true
10035
10075
  reports:
@@ -10038,13 +10078,13 @@ tasks:
10038
10078
  recipients:
10039
10079
  - estebanldh@gmail.com
10040
10080
  - nsimean@despegar.com
10041
- - name: landing.pagination.uy
10081
+ - name: results.search_2_ow.br
10042
10082
  class_name: Henry::Task::CucumberTask
10043
10083
  options:
10044
10084
  tags:
10045
- - landing
10046
- - pagination
10047
- - uy
10085
+ - results
10086
+ - search_2_ow
10087
+ - br
10048
10088
  expand: true
10049
10089
  no-source: true
10050
10090
  reports:
@@ -10053,14 +10093,12 @@ tasks:
10053
10093
  recipients:
10054
10094
  - estebanldh@gmail.com
10055
10095
  - nsimean@despegar.com
10056
- - name: landing.pagination.uy.roundtrip
10096
+ - name: checkout.busquedas_promo
10057
10097
  class_name: Henry::Task::CucumberTask
10058
10098
  options:
10059
10099
  tags:
10060
- - landing
10061
- - pagination
10062
- - uy
10063
- - roundtrip
10100
+ - checkout
10101
+ - busquedas_promo
10064
10102
  expand: true
10065
10103
  no-source: true
10066
10104
  reports:
@@ -10069,14 +10107,13 @@ tasks:
10069
10107
  recipients:
10070
10108
  - estebanldh@gmail.com
10071
10109
  - nsimean@despegar.com
10072
- - name: landing.pagination.uy.oneway
10110
+ - name: checkout.busquedas_promo.ar
10073
10111
  class_name: Henry::Task::CucumberTask
10074
10112
  options:
10075
10113
  tags:
10076
- - landing
10077
- - pagination
10078
- - uy
10079
- - oneway
10114
+ - checkout
10115
+ - busquedas_promo
10116
+ - ar
10080
10117
  expand: true
10081
10118
  no-source: true
10082
10119
  reports:
@@ -10085,13 +10122,12 @@ tasks:
10085
10122
  recipients:
10086
10123
  - estebanldh@gmail.com
10087
10124
  - nsimean@despegar.com
10088
- - name: landing.pagination.ve
10125
+ - name: landing.long_tail
10089
10126
  class_name: Henry::Task::CucumberTask
10090
10127
  options:
10091
10128
  tags:
10092
10129
  - landing
10093
- - pagination
10094
- - ve
10130
+ - long_tail
10095
10131
  expand: true
10096
10132
  no-source: true
10097
10133
  reports:
@@ -10100,14 +10136,13 @@ tasks:
10100
10136
  recipients:
10101
10137
  - estebanldh@gmail.com
10102
10138
  - nsimean@despegar.com
10103
- - name: landing.pagination.ve.roundtrip
10139
+ - name: landing.long_tail.ar
10104
10140
  class_name: Henry::Task::CucumberTask
10105
10141
  options:
10106
10142
  tags:
10107
10143
  - landing
10108
- - pagination
10109
- - ve
10110
- - roundtrip
10144
+ - long_tail
10145
+ - ar
10111
10146
  expand: true
10112
10147
  no-source: true
10113
10148
  reports:
@@ -10116,14 +10151,14 @@ tasks:
10116
10151
  recipients:
10117
10152
  - estebanldh@gmail.com
10118
10153
  - nsimean@despegar.com
10119
- - name: landing.pagination.ve.oneway
10154
+ - name: landing.long_tail.ar.roundtrip
10120
10155
  class_name: Henry::Task::CucumberTask
10121
10156
  options:
10122
10157
  tags:
10123
10158
  - landing
10124
- - pagination
10125
- - ve
10126
- - oneway
10159
+ - long_tail
10160
+ - ar
10161
+ - roundtrip
10127
10162
  expand: true
10128
10163
  no-source: true
10129
10164
  reports:
@@ -10132,12 +10167,14 @@ tasks:
10132
10167
  recipients:
10133
10168
  - estebanldh@gmail.com
10134
10169
  - nsimean@despegar.com
10135
- - name: checkout.compra_duplicada
10170
+ - name: landing.long_tail.ar.oneway
10136
10171
  class_name: Henry::Task::CucumberTask
10137
10172
  options:
10138
10173
  tags:
10139
- - checkout
10140
- - compra_duplicada
10174
+ - landing
10175
+ - long_tail
10176
+ - ar
10177
+ - oneway
10141
10178
  expand: true
10142
10179
  no-source: true
10143
10180
  reports:
@@ -10146,13 +10183,13 @@ tasks:
10146
10183
  recipients:
10147
10184
  - estebanldh@gmail.com
10148
10185
  - nsimean@despegar.com
10149
- - name: checkout.compra_duplicada.ar
10186
+ - name: landing.long_tail.br
10150
10187
  class_name: Henry::Task::CucumberTask
10151
10188
  options:
10152
10189
  tags:
10153
- - checkout
10154
- - compra_duplicada
10155
- - ar
10190
+ - landing
10191
+ - long_tail
10192
+ - br
10156
10193
  expand: true
10157
10194
  no-source: true
10158
10195
  reports:
@@ -10161,13 +10198,13 @@ tasks:
10161
10198
  recipients:
10162
10199
  - estebanldh@gmail.com
10163
10200
  - nsimean@despegar.com
10164
- - name: checkout.compra_duplicada.ar.roundtrip
10201
+ - name: landing.long_tail.br.roundtrip
10165
10202
  class_name: Henry::Task::CucumberTask
10166
10203
  options:
10167
10204
  tags:
10168
- - checkout
10169
- - compra_duplicada
10170
- - ar
10205
+ - landing
10206
+ - long_tail
10207
+ - br
10171
10208
  - roundtrip
10172
10209
  expand: true
10173
10210
  no-source: true
@@ -10177,13 +10214,13 @@ tasks:
10177
10214
  recipients:
10178
10215
  - estebanldh@gmail.com
10179
10216
  - nsimean@despegar.com
10180
- - name: checkout.compra_duplicada.ar.oneway
10217
+ - name: landing.long_tail.br.oneway
10181
10218
  class_name: Henry::Task::CucumberTask
10182
10219
  options:
10183
10220
  tags:
10184
- - checkout
10185
- - compra_duplicada
10186
- - ar
10221
+ - landing
10222
+ - long_tail
10223
+ - br
10187
10224
  - oneway
10188
10225
  expand: true
10189
10226
  no-source: true
@@ -10193,14 +10230,13 @@ tasks:
10193
10230
  recipients:
10194
10231
  - estebanldh@gmail.com
10195
10232
  - nsimean@despegar.com
10196
- - name: checkout.compra_duplicada.ar.multipledestinations
10233
+ - name: landing.long_tail.co
10197
10234
  class_name: Henry::Task::CucumberTask
10198
10235
  options:
10199
10236
  tags:
10200
- - checkout
10201
- - compra_duplicada
10202
- - ar
10203
- - multipledestinations
10237
+ - landing
10238
+ - long_tail
10239
+ - co
10204
10240
  expand: true
10205
10241
  no-source: true
10206
10242
  reports:
@@ -10209,13 +10245,14 @@ tasks:
10209
10245
  recipients:
10210
10246
  - estebanldh@gmail.com
10211
10247
  - nsimean@despegar.com
10212
- - name: checkout.compra_duplicada.mx
10248
+ - name: landing.long_tail.co.roundtrip
10213
10249
  class_name: Henry::Task::CucumberTask
10214
10250
  options:
10215
10251
  tags:
10216
- - checkout
10217
- - compra_duplicada
10218
- - mx
10252
+ - landing
10253
+ - long_tail
10254
+ - co
10255
+ - roundtrip
10219
10256
  expand: true
10220
10257
  no-source: true
10221
10258
  reports:
@@ -10224,14 +10261,14 @@ tasks:
10224
10261
  recipients:
10225
10262
  - estebanldh@gmail.com
10226
10263
  - nsimean@despegar.com
10227
- - name: checkout.compra_duplicada.mx.roundtrip
10264
+ - name: landing.long_tail.co.oneway
10228
10265
  class_name: Henry::Task::CucumberTask
10229
10266
  options:
10230
10267
  tags:
10231
- - checkout
10232
- - compra_duplicada
10233
- - mx
10234
- - roundtrip
10268
+ - landing
10269
+ - long_tail
10270
+ - co
10271
+ - oneway
10235
10272
  expand: true
10236
10273
  no-source: true
10237
10274
  reports:
@@ -10240,14 +10277,13 @@ tasks:
10240
10277
  recipients:
10241
10278
  - estebanldh@gmail.com
10242
10279
  - nsimean@despegar.com
10243
- - name: checkout.compra_duplicada.mx.oneway
10280
+ - name: landing.long_tail.cl
10244
10281
  class_name: Henry::Task::CucumberTask
10245
10282
  options:
10246
10283
  tags:
10247
- - checkout
10248
- - compra_duplicada
10249
- - mx
10250
- - oneway
10284
+ - landing
10285
+ - long_tail
10286
+ - cl
10251
10287
  expand: true
10252
10288
  no-source: true
10253
10289
  reports:
@@ -10256,14 +10292,14 @@ tasks:
10256
10292
  recipients:
10257
10293
  - estebanldh@gmail.com
10258
10294
  - nsimean@despegar.com
10259
- - name: checkout.compra_duplicada.mx.multipledestinations
10295
+ - name: landing.long_tail.cl.roundtrip
10260
10296
  class_name: Henry::Task::CucumberTask
10261
10297
  options:
10262
10298
  tags:
10263
- - checkout
10264
- - compra_duplicada
10265
- - mx
10266
- - multipledestinations
10299
+ - landing
10300
+ - long_tail
10301
+ - cl
10302
+ - roundtrip
10267
10303
  expand: true
10268
10304
  no-source: true
10269
10305
  reports:
@@ -10272,13 +10308,14 @@ tasks:
10272
10308
  recipients:
10273
10309
  - estebanldh@gmail.com
10274
10310
  - nsimean@despegar.com
10275
- - name: checkout.compra_duplicada.us
10311
+ - name: landing.long_tail.cl.oneway
10276
10312
  class_name: Henry::Task::CucumberTask
10277
10313
  options:
10278
10314
  tags:
10279
- - checkout
10280
- - compra_duplicada
10281
- - us
10315
+ - landing
10316
+ - long_tail
10317
+ - cl
10318
+ - oneway
10282
10319
  expand: true
10283
10320
  no-source: true
10284
10321
  reports:
@@ -10287,14 +10324,13 @@ tasks:
10287
10324
  recipients:
10288
10325
  - estebanldh@gmail.com
10289
10326
  - nsimean@despegar.com
10290
- - name: checkout.compra_duplicada.us.roundtrip
10327
+ - name: landing.long_tail.cr
10291
10328
  class_name: Henry::Task::CucumberTask
10292
10329
  options:
10293
10330
  tags:
10294
- - checkout
10295
- - compra_duplicada
10296
- - us
10297
- - roundtrip
10331
+ - landing
10332
+ - long_tail
10333
+ - cr
10298
10334
  expand: true
10299
10335
  no-source: true
10300
10336
  reports:
@@ -10303,14 +10339,14 @@ tasks:
10303
10339
  recipients:
10304
10340
  - estebanldh@gmail.com
10305
10341
  - nsimean@despegar.com
10306
- - name: checkout.compra_duplicada.us.oneway
10342
+ - name: landing.long_tail.cr.roundtrip
10307
10343
  class_name: Henry::Task::CucumberTask
10308
10344
  options:
10309
10345
  tags:
10310
- - checkout
10311
- - compra_duplicada
10312
- - us
10313
- - oneway
10346
+ - landing
10347
+ - long_tail
10348
+ - cr
10349
+ - roundtrip
10314
10350
  expand: true
10315
10351
  no-source: true
10316
10352
  reports:
@@ -10319,14 +10355,14 @@ tasks:
10319
10355
  recipients:
10320
10356
  - estebanldh@gmail.com
10321
10357
  - nsimean@despegar.com
10322
- - name: checkout.compra_duplicada.us.multipledestinations
10358
+ - name: landing.long_tail.cr.oneway
10323
10359
  class_name: Henry::Task::CucumberTask
10324
- options:
10325
- tags:
10326
- - checkout
10327
- - compra_duplicada
10328
- - us
10329
- - multipledestinations
10360
+ options:
10361
+ tags:
10362
+ - landing
10363
+ - long_tail
10364
+ - cr
10365
+ - oneway
10330
10366
  expand: true
10331
10367
  no-source: true
10332
10368
  reports:
@@ -10335,13 +10371,13 @@ tasks:
10335
10371
  recipients:
10336
10372
  - estebanldh@gmail.com
10337
10373
  - nsimean@despegar.com
10338
- - name: checkout.compra_duplicada.br
10374
+ - name: landing.long_tail.ec
10339
10375
  class_name: Henry::Task::CucumberTask
10340
10376
  options:
10341
10377
  tags:
10342
- - checkout
10343
- - compra_duplicada
10344
- - br
10378
+ - landing
10379
+ - long_tail
10380
+ - ec
10345
10381
  expand: true
10346
10382
  no-source: true
10347
10383
  reports:
@@ -10350,13 +10386,13 @@ tasks:
10350
10386
  recipients:
10351
10387
  - estebanldh@gmail.com
10352
10388
  - nsimean@despegar.com
10353
- - name: checkout.compra_duplicada.br.roundtrip
10389
+ - name: landing.long_tail.ec.roundtrip
10354
10390
  class_name: Henry::Task::CucumberTask
10355
10391
  options:
10356
10392
  tags:
10357
- - checkout
10358
- - compra_duplicada
10359
- - br
10393
+ - landing
10394
+ - long_tail
10395
+ - ec
10360
10396
  - roundtrip
10361
10397
  expand: true
10362
10398
  no-source: true
@@ -10366,13 +10402,13 @@ tasks:
10366
10402
  recipients:
10367
10403
  - estebanldh@gmail.com
10368
10404
  - nsimean@despegar.com
10369
- - name: checkout.compra_duplicada.br.oneway
10405
+ - name: landing.long_tail.ec.oneway
10370
10406
  class_name: Henry::Task::CucumberTask
10371
10407
  options:
10372
10408
  tags:
10373
- - checkout
10374
- - compra_duplicada
10375
- - br
10409
+ - landing
10410
+ - long_tail
10411
+ - ec
10376
10412
  - oneway
10377
10413
  expand: true
10378
10414
  no-source: true
@@ -10382,14 +10418,13 @@ tasks:
10382
10418
  recipients:
10383
10419
  - estebanldh@gmail.com
10384
10420
  - nsimean@despegar.com
10385
- - name: checkout.compra_duplicada.br.multipledestinations
10421
+ - name: landing.long_tail.mx
10386
10422
  class_name: Henry::Task::CucumberTask
10387
10423
  options:
10388
10424
  tags:
10389
- - checkout
10390
- - compra_duplicada
10391
- - br
10392
- - multipledestinations
10425
+ - landing
10426
+ - long_tail
10427
+ - mx
10393
10428
  expand: true
10394
10429
  no-source: true
10395
10430
  reports:
@@ -10398,12 +10433,14 @@ tasks:
10398
10433
  recipients:
10399
10434
  - estebanldh@gmail.com
10400
10435
  - nsimean@despegar.com
10401
- - name: checkout.cac
10436
+ - name: landing.long_tail.mx.roundtrip
10402
10437
  class_name: Henry::Task::CucumberTask
10403
10438
  options:
10404
10439
  tags:
10405
- - checkout
10406
- - cac
10440
+ - landing
10441
+ - long_tail
10442
+ - mx
10443
+ - roundtrip
10407
10444
  expand: true
10408
10445
  no-source: true
10409
10446
  reports:
@@ -10412,13 +10449,14 @@ tasks:
10412
10449
  recipients:
10413
10450
  - estebanldh@gmail.com
10414
10451
  - nsimean@despegar.com
10415
- - name: checkout.cac.ar
10452
+ - name: landing.long_tail.mx.oneway
10416
10453
  class_name: Henry::Task::CucumberTask
10417
10454
  options:
10418
10455
  tags:
10419
- - checkout
10420
- - cac
10421
- - ar
10456
+ - landing
10457
+ - long_tail
10458
+ - mx
10459
+ - oneway
10422
10460
  expand: true
10423
10461
  no-source: true
10424
10462
  reports:
@@ -10427,14 +10465,13 @@ tasks:
10427
10465
  recipients:
10428
10466
  - estebanldh@gmail.com
10429
10467
  - nsimean@despegar.com
10430
- - name: checkout.cac.ar.roundtrip
10468
+ - name: landing.long_tail.pa
10431
10469
  class_name: Henry::Task::CucumberTask
10432
10470
  options:
10433
10471
  tags:
10434
- - checkout
10435
- - cac
10436
- - ar
10437
- - roundtrip
10472
+ - landing
10473
+ - long_tail
10474
+ - pa
10438
10475
  expand: true
10439
10476
  no-source: true
10440
10477
  reports:
@@ -10443,14 +10480,14 @@ tasks:
10443
10480
  recipients:
10444
10481
  - estebanldh@gmail.com
10445
10482
  - nsimean@despegar.com
10446
- - name: checkout.cac.ar.oneway
10483
+ - name: landing.long_tail.pa.roundtrip
10447
10484
  class_name: Henry::Task::CucumberTask
10448
10485
  options:
10449
10486
  tags:
10450
- - checkout
10451
- - cac
10452
- - ar
10453
- - oneway
10487
+ - landing
10488
+ - long_tail
10489
+ - pa
10490
+ - roundtrip
10454
10491
  expand: true
10455
10492
  no-source: true
10456
10493
  reports:
@@ -10459,14 +10496,14 @@ tasks:
10459
10496
  recipients:
10460
10497
  - estebanldh@gmail.com
10461
10498
  - nsimean@despegar.com
10462
- - name: checkout.cac.ar.multipledestinations
10499
+ - name: landing.long_tail.pa.oneway
10463
10500
  class_name: Henry::Task::CucumberTask
10464
10501
  options:
10465
10502
  tags:
10466
- - checkout
10467
- - cac
10468
- - ar
10469
- - multipledestinations
10503
+ - landing
10504
+ - long_tail
10505
+ - pa
10506
+ - oneway
10470
10507
  expand: true
10471
10508
  no-source: true
10472
10509
  reports:
@@ -10475,13 +10512,13 @@ tasks:
10475
10512
  recipients:
10476
10513
  - estebanldh@gmail.com
10477
10514
  - nsimean@despegar.com
10478
- - name: checkout.cac.br
10515
+ - name: landing.long_tail.pe
10479
10516
  class_name: Henry::Task::CucumberTask
10480
10517
  options:
10481
10518
  tags:
10482
- - checkout
10483
- - cac
10484
- - br
10519
+ - landing
10520
+ - long_tail
10521
+ - pe
10485
10522
  expand: true
10486
10523
  no-source: true
10487
10524
  reports:
@@ -10490,13 +10527,13 @@ tasks:
10490
10527
  recipients:
10491
10528
  - estebanldh@gmail.com
10492
10529
  - nsimean@despegar.com
10493
- - name: checkout.cac.br.roundtrip
10530
+ - name: landing.long_tail.pe.roundtrip
10494
10531
  class_name: Henry::Task::CucumberTask
10495
10532
  options:
10496
10533
  tags:
10497
- - checkout
10498
- - cac
10499
- - br
10534
+ - landing
10535
+ - long_tail
10536
+ - pe
10500
10537
  - roundtrip
10501
10538
  expand: true
10502
10539
  no-source: true
@@ -10506,13 +10543,13 @@ tasks:
10506
10543
  recipients:
10507
10544
  - estebanldh@gmail.com
10508
10545
  - nsimean@despegar.com
10509
- - name: checkout.cac.br.oneway
10546
+ - name: landing.long_tail.pe.oneway
10510
10547
  class_name: Henry::Task::CucumberTask
10511
10548
  options:
10512
10549
  tags:
10513
- - checkout
10514
- - cac
10515
- - br
10550
+ - landing
10551
+ - long_tail
10552
+ - pe
10516
10553
  - oneway
10517
10554
  expand: true
10518
10555
  no-source: true
@@ -10522,14 +10559,13 @@ tasks:
10522
10559
  recipients:
10523
10560
  - estebanldh@gmail.com
10524
10561
  - nsimean@despegar.com
10525
- - name: checkout.cac.br.roundtrip
10562
+ - name: landing.long_tail.us
10526
10563
  class_name: Henry::Task::CucumberTask
10527
10564
  options:
10528
10565
  tags:
10529
- - checkout
10530
- - cac
10531
- - br
10532
- - roundtrip
10566
+ - landing
10567
+ - long_tail
10568
+ - us
10533
10569
  expand: true
10534
10570
  no-source: true
10535
10571
  reports:
@@ -10538,12 +10574,14 @@ tasks:
10538
10574
  recipients:
10539
10575
  - estebanldh@gmail.com
10540
10576
  - nsimean@despegar.com
10541
- - name: results.search_2_ow
10577
+ - name: landing.long_tail.us.roundtrip
10542
10578
  class_name: Henry::Task::CucumberTask
10543
10579
  options:
10544
10580
  tags:
10545
- - results
10546
- - search_2_ow
10581
+ - landing
10582
+ - long_tail
10583
+ - us
10584
+ - roundtrip
10547
10585
  expand: true
10548
10586
  no-source: true
10549
10587
  reports:
@@ -10552,13 +10590,14 @@ tasks:
10552
10590
  recipients:
10553
10591
  - estebanldh@gmail.com
10554
10592
  - nsimean@despegar.com
10555
- - name: results.search_2_ow.br
10593
+ - name: landing.long_tail.us.oneway
10556
10594
  class_name: Henry::Task::CucumberTask
10557
10595
  options:
10558
10596
  tags:
10559
- - results
10560
- - search_2_ow
10561
- - br
10597
+ - landing
10598
+ - long_tail
10599
+ - us
10600
+ - oneway
10562
10601
  expand: true
10563
10602
  no-source: true
10564
10603
  reports:
@@ -10567,13 +10606,13 @@ tasks:
10567
10606
  recipients:
10568
10607
  - estebanldh@gmail.com
10569
10608
  - nsimean@despegar.com
10570
- - name: results.search_2_ow.br
10609
+ - name: landing.long_tail.uy
10571
10610
  class_name: Henry::Task::CucumberTask
10572
10611
  options:
10573
10612
  tags:
10574
- - results
10575
- - search_2_ow
10576
- - br
10613
+ - landing
10614
+ - long_tail
10615
+ - uy
10577
10616
  expand: true
10578
10617
  no-source: true
10579
10618
  reports:
@@ -10582,13 +10621,14 @@ tasks:
10582
10621
  recipients:
10583
10622
  - estebanldh@gmail.com
10584
10623
  - nsimean@despegar.com
10585
- - name: results.search_2_ow.br
10624
+ - name: landing.long_tail.uy.roundtrip
10586
10625
  class_name: Henry::Task::CucumberTask
10587
10626
  options:
10588
10627
  tags:
10589
- - results
10590
- - search_2_ow
10591
- - br
10628
+ - landing
10629
+ - long_tail
10630
+ - uy
10631
+ - roundtrip
10592
10632
  expand: true
10593
10633
  no-source: true
10594
10634
  reports:
@@ -10597,13 +10637,14 @@ tasks:
10597
10637
  recipients:
10598
10638
  - estebanldh@gmail.com
10599
10639
  - nsimean@despegar.com
10600
- - name: results.search_2_ow.ar
10640
+ - name: landing.long_tail.uy.oneway
10601
10641
  class_name: Henry::Task::CucumberTask
10602
10642
  options:
10603
10643
  tags:
10604
- - results
10605
- - search_2_ow
10606
- - ar
10644
+ - landing
10645
+ - long_tail
10646
+ - uy
10647
+ - oneway
10607
10648
  expand: true
10608
10649
  no-source: true
10609
10650
  reports:
@@ -10612,13 +10653,13 @@ tasks:
10612
10653
  recipients:
10613
10654
  - estebanldh@gmail.com
10614
10655
  - nsimean@despegar.com
10615
- - name: results.search_2_ow.br
10656
+ - name: landing.long_tail.ve
10616
10657
  class_name: Henry::Task::CucumberTask
10617
10658
  options:
10618
10659
  tags:
10619
- - results
10620
- - search_2_ow
10621
- - br
10660
+ - landing
10661
+ - long_tail
10662
+ - ve
10622
10663
  expand: true
10623
10664
  no-source: true
10624
10665
  reports:
@@ -10627,12 +10668,14 @@ tasks:
10627
10668
  recipients:
10628
10669
  - estebanldh@gmail.com
10629
10670
  - nsimean@despegar.com
10630
- - name: checkout.busquedas_promo
10671
+ - name: landing.long_tail.ve.roundtrip
10631
10672
  class_name: Henry::Task::CucumberTask
10632
10673
  options:
10633
10674
  tags:
10634
- - checkout
10635
- - busquedas_promo
10675
+ - landing
10676
+ - long_tail
10677
+ - ve
10678
+ - roundtrip
10636
10679
  expand: true
10637
10680
  no-source: true
10638
10681
  reports:
@@ -10641,13 +10684,14 @@ tasks:
10641
10684
  recipients:
10642
10685
  - estebanldh@gmail.com
10643
10686
  - nsimean@despegar.com
10644
- - name: checkout.busquedas_promo.ar
10687
+ - name: landing.long_tail.ve.oneway
10645
10688
  class_name: Henry::Task::CucumberTask
10646
10689
  options:
10647
10690
  tags:
10648
- - checkout
10649
- - busquedas_promo
10650
- - ar
10691
+ - landing
10692
+ - long_tail
10693
+ - ve
10694
+ - oneway
10651
10695
  expand: true
10652
10696
  no-source: true
10653
10697
  reports:
@@ -11550,6 +11594,21 @@ tasks:
11550
11594
  recipients:
11551
11595
  - estebanldh@gmail.com
11552
11596
  - nsimean@despegar.com
11597
+ - name: checkout.booking_2_ow.br
11598
+ class_name: Henry::Task::CucumberTask
11599
+ options:
11600
+ tags:
11601
+ - checkout
11602
+ - booking_2_ow
11603
+ - br
11604
+ expand: true
11605
+ no-source: true
11606
+ reports:
11607
+ - format: html
11608
+ name: ${DATE}_${TASK_NAME}.html
11609
+ recipients:
11610
+ - estebanldh@gmail.com
11611
+ - nsimean@despegar.com
11553
11612
  - name: flights_tracker.search
11554
11613
  class_name: Henry::Task::CucumberTask
11555
11614
  options:
@@ -12252,6 +12311,65 @@ tasks:
12252
12311
  recipients:
12253
12312
  - estebanldh@gmail.com
12254
12313
  - nsimean@despegar.com
12314
+ - name: checkout.multipleoneway
12315
+ class_name: Henry::Task::CucumberTask
12316
+ options:
12317
+ tags:
12318
+ - checkout
12319
+ - multipleoneway
12320
+ expand: true
12321
+ no-source: true
12322
+ reports:
12323
+ - format: html
12324
+ name: ${DATE}_${TASK_NAME}.html
12325
+ recipients:
12326
+ - estebanldh@gmail.com
12327
+ - nsimean@despegar.com
12328
+ - name: checkout.multipleoneway.br
12329
+ class_name: Henry::Task::CucumberTask
12330
+ options:
12331
+ tags:
12332
+ - checkout
12333
+ - multipleoneway
12334
+ - br
12335
+ expand: true
12336
+ no-source: true
12337
+ reports:
12338
+ - format: html
12339
+ name: ${DATE}_${TASK_NAME}.html
12340
+ recipients:
12341
+ - estebanldh@gmail.com
12342
+ - nsimean@despegar.com
12343
+ - name: checkout.multipleoneway.br
12344
+ class_name: Henry::Task::CucumberTask
12345
+ options:
12346
+ tags:
12347
+ - checkout
12348
+ - multipleoneway
12349
+ - br
12350
+ expand: true
12351
+ no-source: true
12352
+ reports:
12353
+ - format: html
12354
+ name: ${DATE}_${TASK_NAME}.html
12355
+ recipients:
12356
+ - estebanldh@gmail.com
12357
+ - nsimean@despegar.com
12358
+ - name: checkout.multipleoneway.br
12359
+ class_name: Henry::Task::CucumberTask
12360
+ options:
12361
+ tags:
12362
+ - checkout
12363
+ - multipleoneway
12364
+ - br
12365
+ expand: true
12366
+ no-source: true
12367
+ reports:
12368
+ - format: html
12369
+ name: ${DATE}_${TASK_NAME}.html
12370
+ recipients:
12371
+ - estebanldh@gmail.com
12372
+ - nsimean@despegar.com
12255
12373
  - name: checkout.braspag
12256
12374
  class_name: Henry::Task::CucumberTask
12257
12375
  options: