summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/backup_account.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/functional/features/steps/backup_account.py')
-rw-r--r--service/test/functional/features/steps/backup_account.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/service/test/functional/features/steps/backup_account.py b/service/test/functional/features/steps/backup_account.py
index 914309f2..916198f6 100644
--- a/service/test/functional/features/steps/backup_account.py
+++ b/service/test/functional/features/steps/backup_account.py
@@ -14,9 +14,24 @@
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
-from behave import given
+from behave import given, when, then
+
+from common import (
+ fill_by_css_selector,
+ find_element_by_css_selector)
@given(u'I am on the backup account page')
def backup_account_page(context):
context.browser.get(context.backup_account_url)
+
+
+@when(u'I submit my email')
+def submit_backup_email(context):
+ fill_by_css_selector(context, 'input[name="email"]', 'test@test.com')
+ find_element_by_css_selector(context, 'button[type="submit"]').click()
+
+
+@then(u'I see the confirmation page')
+def confirmation_page(context):
+ find_element_by_css_selector(context, '.confirmation-container')