diff options
author | Roald de Vries <rdevries@thoughtworks.com> | 2016-11-29 15:05:34 +0100 |
---|---|---|
committer | Roald de Vries <rdevries@thoughtworks.com> | 2016-11-29 15:05:34 +0100 |
commit | 1ba7abb6098ffba76ab7ed85e491dc060c5c4520 (patch) | |
tree | 4ca227c563bd2580bb0d4d77e0f516ea6fa28e0a /service/test/functional/features/steps/login.py | |
parent | cec3cbf731f0e56cb96de27a070bdaf72e985eb0 (diff) | |
parent | 0d293fad65d90b43016c21a851df100aebbf46cb (diff) |
Merge branch 'master' into signup
Diffstat (limited to 'service/test/functional/features/steps/login.py')
-rw-r--r-- | service/test/functional/features/steps/login.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/service/test/functional/features/steps/login.py b/service/test/functional/features/steps/login.py index e2dc1381..2a653030 100644 --- a/service/test/functional/features/steps/login.py +++ b/service/test/functional/features/steps/login.py @@ -13,8 +13,16 @@ # # You should have received a copy of the GNU Affero General Public License # along with Pixelated. If not, see <http://www.gnu.org/licenses/>. +import time + from behave import when, then -from common import * +from selenium.webdriver.common.by import By + +from common import ( + fill_by_css_selector, + find_element_by_css_selector, + MULTI_USER_URL, + wait_until_element_is_visible_by_locator) @when(u'I open the login page') |