diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-11-24 16:18:09 -0200 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-11-24 16:18:09 -0200 |
commit | 728ef897afe531017d9ba507a2e4075815a0a4dc (patch) | |
tree | d547b6a54f7ba91fbe919da811460c8445155eeb /service/test/functional | |
parent | 6c3e5b3b7d9db4ef10b4ef80b9610856a067b286 (diff) |
Fix imports
See: https://github.com/pixelated/project-issues/issues/380
Diffstat (limited to 'service/test/functional')
-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') |