问题 After implementing Robot's SuiteVisitor Interface the functions def start_suite(self, suite) , def start_test(self, test) and def start_keyword(self, keyword) are being called as expected. But when I try to list the keyword children of keywords, I get empty lists: def start_suite(self, suite): logger.console("Event Start Suite: {}".format(suite.name)) for x in suite.tests: logger.console("-> Test Name: {}".format(x)) for y in x.keywords: logger.console("---> Keyword: {}".format(y)) for z in y