summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-03-10 16:49:21 -0300
committerSriram Viswanathan <sriramv@thoughtworks.com>2017-03-10 16:49:21 -0300
commit908806ee4d2e94c691f8fb7f4ada6d45e7e9a282 (patch)
tree22037d8603d4e655bfcff9d0375b265076b50caf /service
parent3c1cf6548939d164c4296eeaf637ec4a9901b0f4 (diff)
[#923] Fix functional test on login page
Diffstat (limited to 'service')
-rw-r--r--service/test/functional/features/steps/login.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/functional/features/steps/login.py b/service/test/functional/features/steps/login.py
index fb8f08ef..9ce37370 100644
--- a/service/test/functional/features/steps/login.py
+++ b/service/test/functional/features/steps/login.py
@@ -35,7 +35,7 @@ def enter_credentials(context, username, password):
@when(u'I click on the login button')
def click_login(context):
- find_element_by_css_selector(context, 'input[type="submit"]').click()
+ find_element_by_css_selector(context, 'button[type="submit"]').click()
@then(u'I should see the fancy interstitial')