Skip to content

Commit

Permalink
Fix bug: 723532 - state parameter missing in waittillgui*exist functions
Browse files Browse the repository at this point in the history
  • Loading branch information
nagappan committed Feb 4, 2014
1 parent d8aaae7 commit bdfaf18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CobraWinLDTP/ooldtp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,11 +405,11 @@ def wait(self, timeout=5):
def waittillguiexist(self, window_name, object_name = '',
guiTimeOut = 30, state = ''):
return self._remote_waittillguiexist(window_name, object_name,
guiTimeOut)
guiTimeOut, state)
def waittillguinotexist(self, window_name, object_name = '',
guiTimeOut = 30, state = ''):
return self._remote_waittillguinotexist(window_name, object_name,
guiTimeOut)
guiTimeOut, state)
def guiexist(self, window_name, object_name = ''):
return self._remote_guiexist(window_name, object_name)
def launchapp(self, cmd, args = [], delay = 0, env = 1, lang = "C"):
Expand Down

0 comments on commit bdfaf18

Please sign in to comment.