Skip to content
Snippets Groups Projects
Commit a48e4933 authored by Jared Hirsch's avatar Jared Hirsch
Browse files

remove leftover webdriver ref from module path

parent 56c6c723
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ class HomePage(Page):
"""
self.selenium.find_element(*self._sign_in_locator).click()
from browserid.pages.webdriver.sign_in import SignIn
from browserid.pages.sign_in import SignIn
return SignIn(self.selenium, self.timeout, expect=expect)
def click_logout(self):
......
......@@ -26,7 +26,7 @@ class TestAddAnotherEmail:
# Load the BrowserID link from the email in the browser
mozwebqa.selenium.get(email.verify_user_link)
from browserid.pages.webdriver.complete_registration import CompleteRegistration
from browserid.pages.complete_registration import CompleteRegistration
complete_registration = CompleteRegistration(mozwebqa.selenium, mozwebqa.timeout)
# Check the message on the registration page reflects a successful registration!
......@@ -47,7 +47,7 @@ class TestAddAnotherEmail:
# Load the BrowserID link from the email in the browser
mozwebqa.selenium.get(email.add_email_address_link)
from browserid.pages.webdriver.complete_registration import CompleteRegistration
from browserid.pages.complete_registration import CompleteRegistration
complete_registration = CompleteRegistration(mozwebqa.selenium, mozwebqa.timeout)
home_pg.wait_for_user_login()
......
......@@ -28,11 +28,11 @@ class TestChangePassword:
# Load the BrowserID link from the email in the browser
mozwebqa.selenium.get(email.verify_user_link)
from browserid.pages.webdriver.complete_registration import CompleteRegistration
from browserid.pages.complete_registration import CompleteRegistration
CompleteRegistration(mozwebqa.selenium, mozwebqa.timeout)
mozwebqa.selenium.get(mozwebqa.server_base_url)
from browserid.pages.webdriver.account_manager import AccountManager
from browserid.pages.account_manager import AccountManager
account_manager = AccountManager(mozwebqa.selenium, mozwebqa.timeout)
Assert.contains(user['email'], account_manager.emails)
......
......@@ -28,7 +28,7 @@ class TestNewAccount:
# Load the BrowserID link from the email in the browser
mozwebqa.selenium.get(email.verify_user_link)
from browserid.pages.webdriver.complete_registration import CompleteRegistration
from browserid.pages.complete_registration import CompleteRegistration
complete_registration = CompleteRegistration(mozwebqa.selenium, mozwebqa.timeout)
# Check the message on the registration page reflects a successful registration!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment