testing: fix missing import in unittest.py (bug 1243530) r?mdoglio draft
authorDan Minor <dminor@mozilla.com>
Thu, 18 Feb 2016 08:42:45 -0500
changeset 7267 6a3bdf4081d3e4e6de5b57cf8495833abd422d6f
parent 7258 59ef8c812574dc30e591812dcd471e312703ef97
child 7268 1e24363e6808fc50169d3a7e4b90712fe1b8aa47
push id643
push userdminor@mozilla.com
push dateThu, 18 Feb 2016 13:50:50 +0000
reviewersmdoglio
bugs1243530
testing: fix missing import in unittest.py (bug 1243530) r?mdoglio MozReview-Commit-ID: DiSWl1N8fQw
testing/vcttesting/unittest.py
--- a/testing/vcttesting/unittest.py
+++ b/testing/vcttesting/unittest.py
@@ -10,16 +10,17 @@ import subprocess
 import tempfile
 import time
 import unittest
 from contextlib import contextmanager
 from urllib import urlencode
 
 from selenium import webdriver
 import selenium.webdriver.support.expected_conditions as EC
+from selenium.common.exceptions import ElementNotVisibleException
 from selenium.webdriver.common.by import By
 from selenium.webdriver.common.keys import Keys
 from selenium.webdriver.support.ui import Select
 from selenium.webdriver.remote.switch_to import SwitchTo
 from selenium.webdriver.support.expected_conditions import staleness_of
 from selenium.webdriver.support.wait import WebDriverWait
 
 from vcttesting.docker import DockerNotAvailable