summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/search.py
diff options
context:
space:
mode:
authorTiago Ferraz <tiago.ferraz@gmail.com>2015-03-23 10:27:39 -0300
committerTiago Ferraz <tiago.ferraz@gmail.com>2015-03-26 12:12:40 -0300
commitaab5c4e3f721431591f3709cecb2e2e58ab9774e (patch)
treec9d46bb5378bf77c8b20dcb1adc798e0ce7b5b2c /service/test/functional/features/steps/search.py
parent68a0f94cd15b661caa2b4ea87eef55972c8bff25 (diff)
New test that use checkboxes. Removal of hamcrest lib, code refactoring.
A new test was created to use Pixelated checkboxes and the buttons at the top. Also the lib hamcrest was removed and code refactored to be more pythonic. A new method after_step will log information in case of step failures.
Diffstat (limited to 'service/test/functional/features/steps/search.py')
-rw-r--r--service/test/functional/features/steps/search.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/service/test/functional/features/steps/search.py b/service/test/functional/features/steps/search.py
index 8c410112..e653c3ed 100644
--- a/service/test/functional/features/steps/search.py
+++ b/service/test/functional/features/steps/search.py
@@ -17,7 +17,6 @@ from time import sleep
from selenium.webdriver.common.keys import Keys
from common import *
-from hamcrest import *
@when('I search for a mail with the words "{search_term}"')
@@ -31,4 +30,4 @@ def impl(context, search_term):
@then('I see one or more mails in the search results')
def impl(context):
lis = find_elements_by_css_selector(context, '#mail-list li')
- assert_that(len(lis), greater_than_or_equal_to(1))
+ assert len(lis) >= 1