def OnOpenTestSuite(self, event): if not self.check_unsaved_modifications(): return path = RobotFilePathDialog( self, self._controller, self._application.settings).execute() if path: self.open_suite(path)
def OnOpenTestSuite(self, event): if not self.check_unsaved_modifications(): return path = RobotFilePathDialog(self, self._controller, self._application.settings).execute() if path: if self.open_suite(path): return from robotide.editor import customsourceeditor customsourceeditor.main(path)