flights_gui_tests 0.0.51 → 0.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 79d3fcfd274b5f995289e5ea23b78cfaea6ee34d
4
- data.tar.gz: 3e7b313d8771493fe274186a569757e808d2826a
3
+ metadata.gz: 2c4a24bd9e75beff4b0162029d2a78e9a56ad12d
4
+ data.tar.gz: e4cc14625e0a928bbc26b638e1dd8236b007ba32
5
5
  SHA512:
6
- metadata.gz: 559da4df345c4dc68734a354323f676840315dd30f2855c1b086e16bc5e5a97c16df9160e376864c54665f622d2c9c3d5eafccc2a1cd5b225abc23d885f4a2a4
7
- data.tar.gz: fd4c591f864a87124b65370421e1e84698fc61f2d60c9022f7fd16f57ed08f7cb9cc7991321431175581cbb31b5c8cd1feab1727a3fcbf1fc71431ce29a5e486
6
+ metadata.gz: b11c147f51b84618d652570c6d6ea92bb49671447ff6eae616bedc848a76a631b61ff2bd828bd33c19921f7879023c97061f8ecd4831e06b51a6107f91e1b4fd
7
+ data.tar.gz: e586f59b8d602d75a38f9aa826eadf945c9d7e162811778e6eb0f88ae6d12b9d9f039c7c98024d8af851461e0d0522cc2141426992a365708fda92f92ba86a1c
@@ -17,7 +17,7 @@ Entonces(/^verifico que se desplieguen las alertas de campos vacios$/) do
17
17
  (@page.manage_data.adt+@page.manage_data.cnn+@page.manage_data.inf).times do |time|
18
18
  @page.error_primer_nombre_vacio_elements[time].should visible
19
19
  end
20
- @page.error_numero_tarjeta_vacio_element.when_visible(timeout=5)
20
+ @page.error_numero_tarjeta_vacio_element.when_visible(timeout=15)
21
21
  @page.error_numero_tarjeta_vacio_element.should visible
22
22
  @page.error_fecha_tarjeta_vacio_element.should visible
23
23
  @page.error_codigo_seguridad_vacio_element.should visible
@@ -16,10 +16,11 @@ Entonces(/^elijo opcion "(.*)" para dry run$/) do |value|
16
16
  end
17
17
 
18
18
  Cuando(/^fuerzo el abztesting por devtool de "(.*?)" al "(.*?)"$/) do |arg1,arg2|
19
+ url = @page.url
19
20
  @page.abztesting_element.click
20
21
  sleep(0.5)
21
22
  @page.setear_abztesting(arg1,arg2)
22
23
  @page.enviar_abztesting_element.click
23
24
  sleep(1)
24
- @page.refresh
25
+ @page.ir(url)
25
26
  end
@@ -0,0 +1,8 @@
1
+ # encoding: utf-8
2
+ Entonces(/^verifico que se muestre el popup de alertas cuando pierdo el foco$/) do
3
+ pending
4
+ end
5
+
6
+ Entonces(/^verifico que se muestre el popup de chat cuando cierro el navegador$/) do
7
+ pending # express the regexp above with the code you wish you had
8
+ end
@@ -32,12 +32,16 @@ Entonces(/^verifico los datos del vuelo comprado$/) do
32
32
  @monto_total=(itinerario_gracias/"span#total-price span.amount").inner_text.gsub(/\.|\,/,'').to_i
33
33
  @page.links_mas_detalles_gracias_elements.each do |a|
34
34
  a.click
35
- @page.popup_desglose_detalles_gracias_element.when_visible(timeout=20)
36
- doc = Hpricot.parse(@page.popup_desglose_detalles_gracias_element.html)
37
- detail = DetailsCluster.new(doc)
38
- @page.cerrar_popup_desglose_detalles_gracias_element.click
39
- @page.popup_desglose_detalles_gracias_element.when_not_visible(visible=20)
40
- sleep(1)
35
+ begin
36
+ @page.popup_desglose_detalles_gracias_element.when_visible(timeout=20)
37
+ doc = Hpricot.parse(@page.popup_desglose_detalles_gracias_element.html)
38
+ detail = DetailsCluster.new(doc)
39
+ @page.cerrar_popup_desglose_detalles_gracias_element.click
40
+ @page.popup_desglose_detalles_gracias_element.when_not_visible(visible=20)
41
+ sleep(1)
42
+ rescue Watir::Wait::TimeoutError
43
+ puts @page.url
44
+ end
41
45
  end
42
46
  @itinerario_gracias = @page.datos_itinerario
43
47
  @page.cerrar_popup_desglose_gracias_element.click
@@ -24,7 +24,7 @@ module Browser
24
24
  screen_width = browser.execute_script("return screen.width;")
25
25
  screen_height = browser.execute_script("return screen.height;")
26
26
  browser.window.resize_to(screen_width, screen_height)
27
- end
27
+ end
28
28
 
29
29
  def self.error_http?(browser)
30
30
 
@@ -15,6 +15,7 @@ module Results
15
15
  itinerarios_elements[i].div(:class,'actions').link(:class,'payments').click
16
16
  popup_cuotas_element.when_visible(timeout=20)
17
17
  popup = Hpricot.parse(popup_cuotas_element.html)
18
+ sleep(0.5)
18
19
  popup_cuotas_element.span(:class,'popup-close-button popup-close').click
19
20
  popup_cuotas_element.when_not_visible(timeout=20)
20
21
  else
@@ -0,0 +1,55 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.close_navigator
4
+ Se verifica que se muestren los popup frente al cierre y focusOut del navegados
5
+
6
+ @close_navigator
7
+ Esquema del escenario: Se varifica que al perder el foco del navegador o cerrarlo, se muestren los popup correspondientes.
8
+ Dado una pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
9
+ Entonces verifico que la pagina no rompa
10
+ Cuando espero que termine de cargar la pagina de resultados
11
+ Entonces verifico que traiga resultados
12
+ Cuando fuerzo el abztesting de "showLeavingPopup" al "10"
13
+ Dado una pagina de resultados en "<pais>" para una busqueda "<tipo>" del tipo "<cabotage>"
14
+ Entonces verifico que la pagina no rompa
15
+ Cuando espero que termine de cargar la pagina de resultados
16
+ Entonces verifico que traiga resultados
17
+ Entonces verifico que se muestre el popup de alertas cuando pierdo el foco
18
+ Cuando elijo un itinerario y paso a checkout
19
+ Cuando espero que termine de cargar la pagina de checkout
20
+ Entonces verifico que ingrese al checkout
21
+ Y verifico que la pagina no rompa
22
+ Entonces cargo los pasajeros
23
+ Entonces verifico que se muestre el popup de alertas cuando pierdo el foco
24
+ Entonces verifico que se muestre el popup de chat cuando cierro el navegador
25
+
26
+ @co
27
+ @roundtrip
28
+ Ejemplos:
29
+ |pais|tipo|cabotage|
30
+ |CO |roundtrip|nil|
31
+ @co
32
+ @oneway
33
+ Ejemplos:
34
+ |pais|tipo|cabotage|
35
+ |CO |oneway|nil|
36
+ @co
37
+ @multipledestinations
38
+ Ejemplos:
39
+ |pais|tipo|cabotage|
40
+ |CO |multipledestinations|nil|
41
+ @ec
42
+ @roundtrip
43
+ Ejemplos:
44
+ |pais|tipo|cabotage|
45
+ |EC |roundtrip|nil|
46
+ @ec
47
+ @oneway
48
+ Ejemplos:
49
+ |pais|tipo|cabotage|
50
+ |EC |oneway|nil|
51
+ @ec
52
+ @multipledestinations
53
+ Ejemplos:
54
+ |pais|tipo|cabotage|
55
+ |EC |multipledestinations|nil|
@@ -15,7 +15,7 @@
15
15
 
16
16
  gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]
17
17
 
18
- gem.version = '0.0.51' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
18
+ gem.version = '0.0.52' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
19
19
 
20
20
  gem.add_dependency('henry-container', '>= 0.1.39')
21
21
  gem.add_dependency('page-object')
@@ -7866,483 +7866,13 @@ tasks:
7866
7866
  recipients:
7867
7867
  - estebanldh@gmail.com
7868
7868
  - nsimean@despegar.com
7869
- - name: landing.new_search.br
7870
- class_name: Henry::Task::CucumberTask
7871
- options:
7872
- tags:
7873
- - landing
7874
- - new_search
7875
- - br
7876
- expand: true
7877
- no-source: true
7878
- reports:
7879
- - format: html
7880
- name: ${DATE}_${TASK_NAME}.html
7881
- recipients:
7882
- - estebanldh@gmail.com
7883
- - nsimean@despegar.com
7884
- - name: landing.new_search.br.roundtrip
7885
- class_name: Henry::Task::CucumberTask
7886
- options:
7887
- tags:
7888
- - landing
7889
- - new_search
7890
- - br
7891
- - roundtrip
7892
- expand: true
7893
- no-source: true
7894
- reports:
7895
- - format: html
7896
- name: ${DATE}_${TASK_NAME}.html
7897
- recipients:
7898
- - estebanldh@gmail.com
7899
- - nsimean@despegar.com
7900
- - name: landing.new_search.br.oneway
7901
- class_name: Henry::Task::CucumberTask
7902
- options:
7903
- tags:
7904
- - landing
7905
- - new_search
7906
- - br
7907
- - oneway
7908
- expand: true
7909
- no-source: true
7910
- reports:
7911
- - format: html
7912
- name: ${DATE}_${TASK_NAME}.html
7913
- recipients:
7914
- - estebanldh@gmail.com
7915
- - nsimean@despegar.com
7916
- - name: landing.new_search.co
7917
- class_name: Henry::Task::CucumberTask
7918
- options:
7919
- tags:
7920
- - landing
7921
- - new_search
7922
- - co
7923
- expand: true
7924
- no-source: true
7925
- reports:
7926
- - format: html
7927
- name: ${DATE}_${TASK_NAME}.html
7928
- recipients:
7929
- - estebanldh@gmail.com
7930
- - nsimean@despegar.com
7931
- - name: landing.new_search.co.roundtrip
7932
- class_name: Henry::Task::CucumberTask
7933
- options:
7934
- tags:
7935
- - landing
7936
- - new_search
7937
- - co
7938
- - roundtrip
7939
- expand: true
7940
- no-source: true
7941
- reports:
7942
- - format: html
7943
- name: ${DATE}_${TASK_NAME}.html
7944
- recipients:
7945
- - estebanldh@gmail.com
7946
- - nsimean@despegar.com
7947
- - name: landing.new_search.co.oneway
7948
- class_name: Henry::Task::CucumberTask
7949
- options:
7950
- tags:
7951
- - landing
7952
- - new_search
7953
- - co
7954
- - oneway
7955
- expand: true
7956
- no-source: true
7957
- reports:
7958
- - format: html
7959
- name: ${DATE}_${TASK_NAME}.html
7960
- recipients:
7961
- - estebanldh@gmail.com
7962
- - nsimean@despegar.com
7963
- - name: landing.new_search.cl
7964
- class_name: Henry::Task::CucumberTask
7965
- options:
7966
- tags:
7967
- - landing
7968
- - new_search
7969
- - cl
7970
- expand: true
7971
- no-source: true
7972
- reports:
7973
- - format: html
7974
- name: ${DATE}_${TASK_NAME}.html
7975
- recipients:
7976
- - estebanldh@gmail.com
7977
- - nsimean@despegar.com
7978
- - name: landing.new_search.cl.roundtrip
7979
- class_name: Henry::Task::CucumberTask
7980
- options:
7981
- tags:
7982
- - landing
7983
- - new_search
7984
- - cl
7985
- - roundtrip
7986
- expand: true
7987
- no-source: true
7988
- reports:
7989
- - format: html
7990
- name: ${DATE}_${TASK_NAME}.html
7991
- recipients:
7992
- - estebanldh@gmail.com
7993
- - nsimean@despegar.com
7994
- - name: landing.new_search.cl.oneway
7995
- class_name: Henry::Task::CucumberTask
7996
- options:
7997
- tags:
7998
- - landing
7999
- - new_search
8000
- - cl
8001
- - oneway
8002
- expand: true
8003
- no-source: true
8004
- reports:
8005
- - format: html
8006
- name: ${DATE}_${TASK_NAME}.html
8007
- recipients:
8008
- - estebanldh@gmail.com
8009
- - nsimean@despegar.com
8010
- - name: landing.new_search.cr
8011
- class_name: Henry::Task::CucumberTask
8012
- options:
8013
- tags:
8014
- - landing
8015
- - new_search
8016
- - cr
8017
- expand: true
8018
- no-source: true
8019
- reports:
8020
- - format: html
8021
- name: ${DATE}_${TASK_NAME}.html
8022
- recipients:
8023
- - estebanldh@gmail.com
8024
- - nsimean@despegar.com
8025
- - name: landing.new_search.cr.roundtrip
8026
- class_name: Henry::Task::CucumberTask
8027
- options:
8028
- tags:
8029
- - landing
8030
- - new_search
8031
- - cr
8032
- - roundtrip
8033
- expand: true
8034
- no-source: true
8035
- reports:
8036
- - format: html
8037
- name: ${DATE}_${TASK_NAME}.html
8038
- recipients:
8039
- - estebanldh@gmail.com
8040
- - nsimean@despegar.com
8041
- - name: landing.new_search.cr.oneway
8042
- class_name: Henry::Task::CucumberTask
8043
- options:
8044
- tags:
8045
- - landing
8046
- - new_search
8047
- - cr
8048
- - oneway
8049
- expand: true
8050
- no-source: true
8051
- reports:
8052
- - format: html
8053
- name: ${DATE}_${TASK_NAME}.html
8054
- recipients:
8055
- - estebanldh@gmail.com
8056
- - nsimean@despegar.com
8057
- - name: landing.new_search.ec
8058
- class_name: Henry::Task::CucumberTask
8059
- options:
8060
- tags:
8061
- - landing
8062
- - new_search
8063
- - ec
8064
- expand: true
8065
- no-source: true
8066
- reports:
8067
- - format: html
8068
- name: ${DATE}_${TASK_NAME}.html
8069
- recipients:
8070
- - estebanldh@gmail.com
8071
- - nsimean@despegar.com
8072
- - name: landing.new_search.ec.roundtrip
8073
- class_name: Henry::Task::CucumberTask
8074
- options:
8075
- tags:
8076
- - landing
8077
- - new_search
8078
- - ec
8079
- - roundtrip
8080
- expand: true
8081
- no-source: true
8082
- reports:
8083
- - format: html
8084
- name: ${DATE}_${TASK_NAME}.html
8085
- recipients:
8086
- - estebanldh@gmail.com
8087
- - nsimean@despegar.com
8088
- - name: landing.new_search.ec.oneway
8089
- class_name: Henry::Task::CucumberTask
8090
- options:
8091
- tags:
8092
- - landing
8093
- - new_search
8094
- - ec
8095
- - oneway
8096
- expand: true
8097
- no-source: true
8098
- reports:
8099
- - format: html
8100
- name: ${DATE}_${TASK_NAME}.html
8101
- recipients:
8102
- - estebanldh@gmail.com
8103
- - nsimean@despegar.com
8104
- - name: landing.new_search.mx
8105
- class_name: Henry::Task::CucumberTask
8106
- options:
8107
- tags:
8108
- - landing
8109
- - new_search
8110
- - mx
8111
- expand: true
8112
- no-source: true
8113
- reports:
8114
- - format: html
8115
- name: ${DATE}_${TASK_NAME}.html
8116
- recipients:
8117
- - estebanldh@gmail.com
8118
- - nsimean@despegar.com
8119
- - name: landing.new_search.mx.roundtrip
8120
- class_name: Henry::Task::CucumberTask
8121
- options:
8122
- tags:
8123
- - landing
8124
- - new_search
8125
- - mx
8126
- - roundtrip
8127
- expand: true
8128
- no-source: true
8129
- reports:
8130
- - format: html
8131
- name: ${DATE}_${TASK_NAME}.html
8132
- recipients:
8133
- - estebanldh@gmail.com
8134
- - nsimean@despegar.com
8135
- - name: landing.new_search.mx.oneway
8136
- class_name: Henry::Task::CucumberTask
8137
- options:
8138
- tags:
8139
- - landing
8140
- - new_search
8141
- - mx
8142
- - oneway
8143
- expand: true
8144
- no-source: true
8145
- reports:
8146
- - format: html
8147
- name: ${DATE}_${TASK_NAME}.html
8148
- recipients:
8149
- - estebanldh@gmail.com
8150
- - nsimean@despegar.com
8151
- - name: landing.new_search.pa
8152
- class_name: Henry::Task::CucumberTask
8153
- options:
8154
- tags:
8155
- - landing
8156
- - new_search
8157
- - pa
8158
- expand: true
8159
- no-source: true
8160
- reports:
8161
- - format: html
8162
- name: ${DATE}_${TASK_NAME}.html
8163
- recipients:
8164
- - estebanldh@gmail.com
8165
- - nsimean@despegar.com
8166
- - name: landing.new_search.pa.roundtrip
8167
- class_name: Henry::Task::CucumberTask
8168
- options:
8169
- tags:
8170
- - landing
8171
- - new_search
8172
- - pa
8173
- - roundtrip
8174
- expand: true
8175
- no-source: true
8176
- reports:
8177
- - format: html
8178
- name: ${DATE}_${TASK_NAME}.html
8179
- recipients:
8180
- - estebanldh@gmail.com
8181
- - nsimean@despegar.com
8182
- - name: landing.new_search.pa.oneway
8183
- class_name: Henry::Task::CucumberTask
8184
- options:
8185
- tags:
8186
- - landing
8187
- - new_search
8188
- - pa
8189
- - oneway
8190
- expand: true
8191
- no-source: true
8192
- reports:
8193
- - format: html
8194
- name: ${DATE}_${TASK_NAME}.html
8195
- recipients:
8196
- - estebanldh@gmail.com
8197
- - nsimean@despegar.com
8198
- - name: landing.new_search.pe
8199
- class_name: Henry::Task::CucumberTask
8200
- options:
8201
- tags:
8202
- - landing
8203
- - new_search
8204
- - pe
8205
- expand: true
8206
- no-source: true
8207
- reports:
8208
- - format: html
8209
- name: ${DATE}_${TASK_NAME}.html
8210
- recipients:
8211
- - estebanldh@gmail.com
8212
- - nsimean@despegar.com
8213
- - name: landing.new_search.pe.roundtrip
8214
- class_name: Henry::Task::CucumberTask
8215
- options:
8216
- tags:
8217
- - landing
8218
- - new_search
8219
- - pe
8220
- - roundtrip
8221
- expand: true
8222
- no-source: true
8223
- reports:
8224
- - format: html
8225
- name: ${DATE}_${TASK_NAME}.html
8226
- recipients:
8227
- - estebanldh@gmail.com
8228
- - nsimean@despegar.com
8229
- - name: landing.new_search.pe.oneway
8230
- class_name: Henry::Task::CucumberTask
8231
- options:
8232
- tags:
8233
- - landing
8234
- - new_search
8235
- - pe
8236
- - oneway
8237
- expand: true
8238
- no-source: true
8239
- reports:
8240
- - format: html
8241
- name: ${DATE}_${TASK_NAME}.html
8242
- recipients:
8243
- - estebanldh@gmail.com
8244
- - nsimean@despegar.com
8245
- - name: landing.new_search.us
8246
- class_name: Henry::Task::CucumberTask
8247
- options:
8248
- tags:
8249
- - landing
8250
- - new_search
8251
- - us
8252
- expand: true
8253
- no-source: true
8254
- reports:
8255
- - format: html
8256
- name: ${DATE}_${TASK_NAME}.html
8257
- recipients:
8258
- - estebanldh@gmail.com
8259
- - nsimean@despegar.com
8260
- - name: landing.new_search.us.roundtrip
8261
- class_name: Henry::Task::CucumberTask
8262
- options:
8263
- tags:
8264
- - landing
8265
- - new_search
8266
- - us
8267
- - roundtrip
8268
- expand: true
8269
- no-source: true
8270
- reports:
8271
- - format: html
8272
- name: ${DATE}_${TASK_NAME}.html
8273
- recipients:
8274
- - estebanldh@gmail.com
8275
- - nsimean@despegar.com
8276
- - name: landing.new_search.us.oneway
8277
- class_name: Henry::Task::CucumberTask
8278
- options:
8279
- tags:
8280
- - landing
8281
- - new_search
8282
- - us
8283
- - oneway
8284
- expand: true
8285
- no-source: true
8286
- reports:
8287
- - format: html
8288
- name: ${DATE}_${TASK_NAME}.html
8289
- recipients:
8290
- - estebanldh@gmail.com
8291
- - nsimean@despegar.com
8292
- - name: landing.new_search.uy
8293
- class_name: Henry::Task::CucumberTask
8294
- options:
8295
- tags:
8296
- - landing
8297
- - new_search
8298
- - uy
8299
- expand: true
8300
- no-source: true
8301
- reports:
8302
- - format: html
8303
- name: ${DATE}_${TASK_NAME}.html
8304
- recipients:
8305
- - estebanldh@gmail.com
8306
- - nsimean@despegar.com
8307
- - name: landing.new_search.uy.roundtrip
8308
- class_name: Henry::Task::CucumberTask
8309
- options:
8310
- tags:
8311
- - landing
8312
- - new_search
8313
- - uy
8314
- - roundtrip
8315
- expand: true
8316
- no-source: true
8317
- reports:
8318
- - format: html
8319
- name: ${DATE}_${TASK_NAME}.html
8320
- recipients:
8321
- - estebanldh@gmail.com
8322
- - nsimean@despegar.com
8323
- - name: landing.new_search.uy.oneway
8324
- class_name: Henry::Task::CucumberTask
8325
- options:
8326
- tags:
8327
- - landing
8328
- - new_search
8329
- - uy
8330
- - oneway
8331
- expand: true
8332
- no-source: true
8333
- reports:
8334
- - format: html
8335
- name: ${DATE}_${TASK_NAME}.html
8336
- recipients:
8337
- - estebanldh@gmail.com
8338
- - nsimean@despegar.com
8339
- - name: landing.new_search.ve
7869
+ - name: landing.new_search.co
8340
7870
  class_name: Henry::Task::CucumberTask
8341
7871
  options:
8342
7872
  tags:
8343
7873
  - landing
8344
7874
  - new_search
8345
- - ve
7875
+ - co
8346
7876
  expand: true
8347
7877
  no-source: true
8348
7878
  reports:
@@ -8351,13 +7881,13 @@ tasks:
8351
7881
  recipients:
8352
7882
  - estebanldh@gmail.com
8353
7883
  - nsimean@despegar.com
8354
- - name: landing.new_search.ve.roundtrip
7884
+ - name: landing.new_search.co.roundtrip
8355
7885
  class_name: Henry::Task::CucumberTask
8356
7886
  options:
8357
7887
  tags:
8358
7888
  - landing
8359
7889
  - new_search
8360
- - ve
7890
+ - co
8361
7891
  - roundtrip
8362
7892
  expand: true
8363
7893
  no-source: true
@@ -8367,13 +7897,13 @@ tasks:
8367
7897
  recipients:
8368
7898
  - estebanldh@gmail.com
8369
7899
  - nsimean@despegar.com
8370
- - name: landing.new_search.ve.oneway
7900
+ - name: landing.new_search.co.oneway
8371
7901
  class_name: Henry::Task::CucumberTask
8372
7902
  options:
8373
7903
  tags:
8374
7904
  - landing
8375
7905
  - new_search
8376
- - ve
7906
+ - co
8377
7907
  - oneway
8378
7908
  expand: true
8379
7909
  no-source: true
@@ -11007,6 +10537,146 @@ tasks:
11007
10537
  recipients:
11008
10538
  - estebanldh@gmail.com
11009
10539
  - nsimean@despegar.com
10540
+ - name: checkout.close_navigator
10541
+ class_name: Henry::Task::CucumberTask
10542
+ options:
10543
+ tags:
10544
+ - checkout
10545
+ - close_navigator
10546
+ expand: true
10547
+ no-source: true
10548
+ reports:
10549
+ - format: html
10550
+ name: ${DATE}_${TASK_NAME}.html
10551
+ recipients:
10552
+ - estebanldh@gmail.com
10553
+ - nsimean@despegar.com
10554
+ - name: checkout.close_navigator.co
10555
+ class_name: Henry::Task::CucumberTask
10556
+ options:
10557
+ tags:
10558
+ - checkout
10559
+ - close_navigator
10560
+ - co
10561
+ expand: true
10562
+ no-source: true
10563
+ reports:
10564
+ - format: html
10565
+ name: ${DATE}_${TASK_NAME}.html
10566
+ recipients:
10567
+ - estebanldh@gmail.com
10568
+ - nsimean@despegar.com
10569
+ - name: checkout.close_navigator.co.roundtrip
10570
+ class_name: Henry::Task::CucumberTask
10571
+ options:
10572
+ tags:
10573
+ - checkout
10574
+ - close_navigator
10575
+ - co
10576
+ - roundtrip
10577
+ expand: true
10578
+ no-source: true
10579
+ reports:
10580
+ - format: html
10581
+ name: ${DATE}_${TASK_NAME}.html
10582
+ recipients:
10583
+ - estebanldh@gmail.com
10584
+ - nsimean@despegar.com
10585
+ - name: checkout.close_navigator.co.oneway
10586
+ class_name: Henry::Task::CucumberTask
10587
+ options:
10588
+ tags:
10589
+ - checkout
10590
+ - close_navigator
10591
+ - co
10592
+ - oneway
10593
+ expand: true
10594
+ no-source: true
10595
+ reports:
10596
+ - format: html
10597
+ name: ${DATE}_${TASK_NAME}.html
10598
+ recipients:
10599
+ - estebanldh@gmail.com
10600
+ - nsimean@despegar.com
10601
+ - name: checkout.close_navigator.co.multipledestinations
10602
+ class_name: Henry::Task::CucumberTask
10603
+ options:
10604
+ tags:
10605
+ - checkout
10606
+ - close_navigator
10607
+ - co
10608
+ - multipledestinations
10609
+ expand: true
10610
+ no-source: true
10611
+ reports:
10612
+ - format: html
10613
+ name: ${DATE}_${TASK_NAME}.html
10614
+ recipients:
10615
+ - estebanldh@gmail.com
10616
+ - nsimean@despegar.com
10617
+ - name: checkout.close_navigator.ec
10618
+ class_name: Henry::Task::CucumberTask
10619
+ options:
10620
+ tags:
10621
+ - checkout
10622
+ - close_navigator
10623
+ - ec
10624
+ expand: true
10625
+ no-source: true
10626
+ reports:
10627
+ - format: html
10628
+ name: ${DATE}_${TASK_NAME}.html
10629
+ recipients:
10630
+ - estebanldh@gmail.com
10631
+ - nsimean@despegar.com
10632
+ - name: checkout.close_navigator.ec.roundtrip
10633
+ class_name: Henry::Task::CucumberTask
10634
+ options:
10635
+ tags:
10636
+ - checkout
10637
+ - close_navigator
10638
+ - ec
10639
+ - roundtrip
10640
+ expand: true
10641
+ no-source: true
10642
+ reports:
10643
+ - format: html
10644
+ name: ${DATE}_${TASK_NAME}.html
10645
+ recipients:
10646
+ - estebanldh@gmail.com
10647
+ - nsimean@despegar.com
10648
+ - name: checkout.close_navigator.ec.oneway
10649
+ class_name: Henry::Task::CucumberTask
10650
+ options:
10651
+ tags:
10652
+ - checkout
10653
+ - close_navigator
10654
+ - ec
10655
+ - oneway
10656
+ expand: true
10657
+ no-source: true
10658
+ reports:
10659
+ - format: html
10660
+ name: ${DATE}_${TASK_NAME}.html
10661
+ recipients:
10662
+ - estebanldh@gmail.com
10663
+ - nsimean@despegar.com
10664
+ - name: checkout.close_navigator.ec.multipledestinations
10665
+ class_name: Henry::Task::CucumberTask
10666
+ options:
10667
+ tags:
10668
+ - checkout
10669
+ - close_navigator
10670
+ - ec
10671
+ - multipledestinations
10672
+ expand: true
10673
+ no-source: true
10674
+ reports:
10675
+ - format: html
10676
+ name: ${DATE}_${TASK_NAME}.html
10677
+ recipients:
10678
+ - estebanldh@gmail.com
10679
+ - nsimean@despegar.com
11010
10680
  - name: checkout.online_payment
11011
10681
  class_name: Henry::Task::CucumberTask
11012
10682
  options:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flights_gui_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.51
4
+ version: 0.0.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - lgonzalez,lsimean
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-26 00:00:00.000000000 Z
11
+ date: 2014-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: henry-container
@@ -213,6 +213,7 @@ files:
213
213
  - features/step_definitions/landing/negative_steps.rb
214
214
  - features/step_definitions/landing/new_landing_steps.rb
215
215
  - features/step_definitions/page_steps.rb
216
+ - features/step_definitions/popup_navigator_steps.rb
216
217
  - features/step_definitions/results/basefare_steps.rb
217
218
  - features/step_definitions/results/errors_steps.rb
218
219
  - features/step_definitions/results/filters_steps.rb
@@ -285,6 +286,7 @@ files:
285
286
  - features/tests/checkout/book_ok_br.feature
286
287
  - features/tests/checkout/cac.feature
287
288
  - features/tests/checkout/cash_payment.feature
289
+ - features/tests/checkout/close_navigator.feature
288
290
  - features/tests/checkout/compras_duplicadas.feature
289
291
  - features/tests/checkout/cupones.feature
290
292
  - features/tests/checkout/error_messages.feature