def execute(self, function, *args):
"Executes the function, and handle exceptions"
if readline is not None:
readline.set_history_length(10000)
readline.write_history_file(histfile)
try:
function(self.browser, *args)
except Exception as e:
self.handle_exception(e)
评论列表
文章目录