We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7e896 commit de6749cCopy full SHA for de6749c
nextcloudappstore/core/tests/e2e/test_update_account.py
@@ -1,3 +1,4 @@
1
+from nextcloudappstore.core.tests.e2e import TEST_PASSWORD
2
from nextcloudappstore.core.tests.e2e.base import BaseStoreTest
3
4
@@ -16,7 +17,12 @@ def test_update_account(self):
16
17
mail = self.by_id('id_email')
18
mail.clear()
19
mail.send_keys('change@me.com')
- mail.submit()
20
+
21
+ passwd = self.by_id('id_passwd')
22
+ passwd.clear()
23
+ passwd.send_keys(TEST_PASSWORD)
24
25
+ passwd.submit()
26
27
self.assertTrue(self.by_css('.alert-success').is_displayed())
28
0 commit comments