Skip to content

Commit

Permalink
fixed errors for "Wait Until Element Is Not Visible".
Browse files Browse the repository at this point in the history
fixed error on ln 108 after reverting change made to ln 106
  • Loading branch information
Joe Purdy committed Feb 13, 2015
1 parent 63a4640 commit dccb1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Selenium2Library/keywords/_waiting.py
Expand Up @@ -105,7 +105,7 @@ def check_hidden():
elif visible is None:
return error or "Element locator '%s' did not match any elements after %s" % (locator, self._format_timeout(timeout))
else:
return error or "Element '%s' was not visible in %s" % (locator, self._format_timeout(timeout))
return error or "Element '%s' was still visible in %s" % (locator, self._format_timeout(timeout))
self._wait_until_no_error(timeout, check_hidden)

# Private
Expand Down

0 comments on commit dccb1fe

Please sign in to comment.