flights_gui_henry_tests 2.2.4 → 2.2.5
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,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTI0NGMyNzhmOWZjZTU0OWExYzY2NDc2NjA2YTg5MjViNzliZDM2Yg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ODZmNDVmM2VjNjg2NGUyMDdlYzFkNzk4N2M2NWFhNjMzZjcwNjBiYg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDEyZGQ5ODUyYWY3OWZlMmQ2MmQzNjc4M2JiOTdjZGU4NWQ3ZmM4NTg5ZDU3
|
|
10
|
+
YTkxNTAzZGUyZWJmNzhhZjViZDQyNWY2MjZhMTA5YzQyZWI4Yzk3MmMxOWY2
|
|
11
|
+
NzZjNGMxMzUzZmY0MzUzZjJlMzIyZDc3NDg5NDQyZTRkZjg3MDU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ODczOTA5NjFjZmIzOTUwNjc0MzM5YmVhNmVmMDMxOWQ2Njc1MjU4Mjc3ZTEx
|
|
14
|
+
YWNjNzc2MjE4YjNjYWEzZTIyMzk1ZGU5NGM2NjVjMjZlOWMzYjY1YzVmNjg5
|
|
15
|
+
YjIzOGZiNGZmZDhjZjM2NmNlODI2NzQzNWUxZmU3Mjc5NWM0ZjU=
|
|
@@ -5,8 +5,12 @@ Then /^ingreso una fecha pasada$/ do
|
|
|
5
5
|
end
|
|
6
6
|
Then /^Verifico mensaje de error "(.*)"$/ do |text|
|
|
7
7
|
step "Verifico que la pagina no rompa"
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
begin
|
|
9
|
+
BROWSER.div(:id,'results-error').should visible("Mensaje de error")
|
|
10
|
+
BROWSER.div(:id,'results-error').text.no_accents.downcase.should match(text)
|
|
11
|
+
rescue Selenium::WebDriver::Error::UnknownError
|
|
12
|
+
puts "Unknown error"
|
|
13
|
+
end
|
|
10
14
|
end
|
|
11
15
|
Then /^ingreso una fecha del dia de hoy$/ do
|
|
12
16
|
date = Date.today
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]
|
|
17
17
|
|
|
18
|
-
gem.version = '2.2.
|
|
18
|
+
gem.version = '2.2.5' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
|
|
19
19
|
|
|
20
20
|
gem.add_dependency('henry-container', '>= 0.1.39')
|
|
21
21
|
gem.add_dependency('watir-webdriver')
|