Jenkins: Increase timeout to 20 seconds for UI tests (#2884)

This commit is contained in:
Dave Hunt 2017-10-30 11:59:01 +00:00 коммит произвёл Ed Morley
Родитель f7380546f8
Коммит 9cfa8e4ca6
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -4,6 +4,9 @@ from selenium.webdriver.common.by import By
class Base(Page):
def __init__(self, driver, base_url=None, timeout=20, **url_kwargs):
super(Base, self).__init__(driver, base_url, timeout, **url_kwargs)
@property
def header(self):
return self.Header(self)