GNOME Bugzilla – Bug 723532
ooldtp.waittillguiexist, state parameter no passed to interface
Last modified: 2014-02-04 04:53:02 UTC
I found an issue using the python ooldtp module. Using the waittillguiexist and waittillguinotexist methods I received following error: if ooLDTP.waittillguiexist(installShieldWizardName) == 0:
+ Trace 233118
guiTimeOut)
return self.__send(self.__name, args[1:])
verbose=self.__verbose
raise e Fault: <Fault 0: 'Request contains too few param elements based on method signature.'>
The last parameter "state" is missing in the _remote call. I modified both methods adding the "state" parameter: def waittillguiexist(self, window_name, object_name = '', guiTimeOut = 30, state = ''): return self._remote_waittillguiexist(window_name, object_name, guiTimeOut, state) def waittillguinotexist(self, window_name, object_name = '', guiTimeOut = 30, state = ''): return self._remote_waittillguinotexist(window_name, object_name, guiTimeOut, state)
Thanks for the bug report, fixed in git head.