Merge "Fix typo in calling _is_element_visible method"

This commit is contained in:
Jenkins 2015-02-05 15:30:27 +00:00 committed by Gerrit Code Review
commit 041f3856c7
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class LoginPage(pageobject.PageObject):
def is_login_page(self):
return (self.is_the_current_page() and
self.is_element_visible(*self._login_submit_button_locator))
self._is_element_visible(*self._login_submit_button_locator))
@property
def username(self):