summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2017-03-29 11:37:45 -0300
committerAnike Arni <aarni@thoughtworks.com>2017-03-29 11:37:45 -0300
commit54ce5397e484fd81ee01d714c87c32ed4718fdb2 (patch)
tree7ff9bdec50bf407a4238b72eef01a462b258535f /service
parent9f0b66ae8fa5daac158f7c74919c0636882a550f (diff)
Fix functional tests for button change in webapp
Webapp buttons on signup changed from buttons to input[type=submit]. https://0xacab.org/leap/leap_web/commit/b1b523f08a9ce7ea5fe0d50dc8b86995e00b48d6
Diffstat (limited to 'service')
-rw-r--r--service/test/functional/features/steps/signup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/functional/features/steps/signup.py b/service/test/functional/features/steps/signup.py
index 43480666..d89cbb97 100644
--- a/service/test/functional/features/steps/signup.py
+++ b/service/test/functional/features/steps/signup.py
@@ -36,7 +36,7 @@ def step_impl(context):
@when(u'I click on the signup button') # noqa
def step_impl(context):
- find_element_by_css_selector(context, 'button[type=submit]').click()
+ find_element_by_css_selector(context, 'input[type=submit]').click()
@then(u'I should see the user control panel') # noqa