From ed6c3c449b7a947901b45bdb0d0dc017560e7f78 Mon Sep 17 00:00:00 2001 From: Tayane Fernandes Date: Wed, 29 Mar 2017 18:49:16 -0300 Subject: [#927] Change account recovery tests to run against a non mocked application with @thaissiqueira --- service/test/functional/features/steps/login.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'service/test/functional/features/steps/login.py') diff --git a/service/test/functional/features/steps/login.py b/service/test/functional/features/steps/login.py index 2d7be259..432186f5 100644 --- a/service/test/functional/features/steps/login.py +++ b/service/test/functional/features/steps/login.py @@ -21,12 +21,25 @@ from common import ( find_element_by_css_selector) +@given('I am logged in Pixelated') +def login_user(context): + login_page(context) + enter_credentials(context, 'username', 'password') + click_login(context) + see_interstitial(context) + _see_inbox(context) + + @given(u'a user is accessing the login page') @when(u'I open the login page') def login_page(context): context.browser.get(context.login_url) +def _see_inbox(context): + find_element_by_css_selector(context, '#compose', timeout=40) + + @when(u'I enter {username} and {password} as credentials') def enter_credentials(context, username, password): fill_by_css_selector(context, 'input[name="username"]', context.username) @@ -39,7 +52,7 @@ def click_login(context): @then(u'I should see the fancy interstitial') -def step_impl(context): +def see_interstitial(context): find_element_by_css_selector(context, 'section#hive-section') @@ -48,11 +61,13 @@ def click_logout(context): find_element_by_css_selector(context, '#logout-form div').click() +@then(u'I logout from the header') @when(u'I logout from the header') def click_logout(context): find_element_by_css_selector(context, 'button[name="logout"]').click() +@when(u'I should see the login page') @then(u'I should see the login page') def see_login_page(context): find_element_by_css_selector(context, 'form#login_form') -- cgit v1.2.3