This commit is contained in:
bebef1987 2013-02-13 15:49:07 +02:00
Родитель 94f2149dff
Коммит d88d948e14
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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):