Merge branch 'master' into update-requests

This commit is contained in:
Stephen Donner 2016-08-08 11:00:47 -07:00 коммит произвёл GitHub
Родитель 0531ce5935 1360215d56
Коммит 62fb015ac9
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -25,9 +25,9 @@ class MozTrapLoginPage(MozTrapBasePage):
def login(self, email, password):
from home_page import MozTrapHomePage
from browserid import BrowserID
from bidpom import BIDPOM
self.selenium.find_element(*self._browserid_locator).click()
browser_id = BrowserID(self.selenium, timeout=self.timeout)
browser_id = BIDPOM(self.selenium, timeout=self.timeout)
browser_id.sign_in(email, password)
WebDriverWait(self.selenium, self.timeout).until(
lambda s: self.header.is_user_logged_in)

Просмотреть файл

@ -1,4 +1,4 @@
browserid
bidpom
pytest==2.9.2
pytest-selenium
pytest-variables