fix except issue
This commit is contained in:
Родитель
94f2149dff
Коммит
d88d948e14
2
page.py
2
page.py
|
@ -37,7 +37,7 @@ class Page(object):
|
|||
def is_element_visible(self, *locator):
|
||||
try:
|
||||
return self.selenium.find_element(*locator).is_displayed()
|
||||
except NoSuchElementException, ElementNotVisibleException:
|
||||
except (NoSuchElementException, ElementNotVisibleException):
|
||||
return False
|
||||
|
||||
def is_element_present(self, *locator):
|
||||
|
|
Загрузка…
Ссылка в новой задаче