问题陈述:我有一个.robot文件,其中包含很多关键字。这是一个更高级别的机器人文件,不包含任何测试用例。我想列出所有关键字名称。
到目前为止,我尝试了什么?
from robot.parsing.model import TestData
suite = TestData(parent=None,source="Track2_Keywords.robot")
它给出错误
raise NoTestsFound('File have no tests or tasks.') robot.parsing.populators.NoTestsFound: File 没有测试或任务。
我也试过:
from robot.parsing.model import KeywordTable
suite = KeywordTable("Track2_Keywords.robot")
for item in suite:
... print (item.name)
但它是空的。
慕的地8271018
神不在的星期二
相关分类