summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/login.py
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2016-12-06 09:39:14 -0200
committerTulio Casagrande <tcasagra@thoughtworks.com>2016-12-06 09:41:46 -0200
commit76efb47c91a6add0369e699e935bcf048ab9e3b0 (patch)
treec06d365da913f34ab581d712154bacc8235b4892 /service/test/functional/features/steps/login.py
parentb4735378f343fbcb695956a161b21076254de79f (diff)
Remove sleep time when waiting for interstitial
See: https://github.com/pixelated/project-issues/issues/381
Diffstat (limited to 'service/test/functional/features/steps/login.py')
-rw-r--r--service/test/functional/features/steps/login.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/service/test/functional/features/steps/login.py b/service/test/functional/features/steps/login.py
index b5e88608..6ee521e9 100644
--- a/service/test/functional/features/steps/login.py
+++ b/service/test/functional/features/steps/login.py
@@ -13,7 +13,6 @@
#
# 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 given, when, then
@@ -42,11 +41,6 @@ def click_login(context):
@then(u'I should see the fancy interstitial')
def step_impl(context):
find_element_by_css_selector(context, 'section#hive-section')
- _wait_for_interstitial_to_reload()
-
-
-def _wait_for_interstitial_to_reload():
- time.sleep(10)
@when(u'I logout')