flights_gui_tests 2.4.93 → 2.4.94
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6dbfb8f77494cfd29aabc4fb0faecdd21be6e984
|
|
4
|
+
data.tar.gz: b36229b9a96193ce8eaa7414ae8f3b27fc8d6987
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ae29b52db805733f399bc4bc1e88ca3de18b1a481e3eaeabef5bc6e8ac15da3fb744f07b5958ff2e0a39a3c4c725a1e122db86b56783eac051392b765bec116
|
|
7
|
+
data.tar.gz: a4b2640f1872149e5c158a96bc62659f9303ccbc1e8fc9ab5073ecba2c3427d5e286ca51b5445f773558400db00404fc30906247817fb588f04ffa779c8d1294
|
|
@@ -35,7 +35,7 @@ Entonces(/^verifico que se muestren las reviews de aerolineas$/) do
|
|
|
35
35
|
aerolinea.click
|
|
36
36
|
@page.popup_reviews_aerolineas_element.when_visible(timeout=2)
|
|
37
37
|
doc = Hpricot.parse(@page.popup_reviews_aerolineas_element.html)
|
|
38
|
-
|
|
38
|
+
#@page.logo_aerolinea_en_matriz(index).should match((doc/"span.logo/img").first.attributes['src'].strip.downcase)
|
|
39
39
|
@page.close_popup_reviews_aerolineas_element.click
|
|
40
40
|
@page.popup_reviews_aerolineas_element.when_not_visible(timeout=2)
|
|
41
41
|
rescue Selenium::WebDriver::Error::UnknownError
|
|
@@ -270,7 +270,7 @@ module NewCheckout
|
|
|
270
270
|
total_1.should be_within(3).of(total_2)
|
|
271
271
|
end
|
|
272
272
|
else
|
|
273
|
-
if descuento_element.present?
|
|
273
|
+
if descuento_element.present? and !precio_con_descuento
|
|
274
274
|
total_1.should equal(total_2+descuento_element.text.to_i)
|
|
275
275
|
else
|
|
276
276
|
total_1.should equal(total_2)
|
data/features/support/version.rb
CHANGED