我目前正在使用Cucumber和Java。我想从ITestResult
。
我目前正在使用以下方法检索参数:
Object[] test = testResult.getParameters();
然而,我唯一可以访问的东西似乎是第一个对象名称而没有别的。
test = {Object[1]@1492}
0 = {CucumberFeatureWrapper@1493} "Links at EDM Documents View,"
cucumberFeature = {CucumberFeature@1516}
path = "test/01-automation.feature"
feature = {Feature@1518}
cucumberBackground = null
currentStepContainer = {CucumberScenario@1519}
cucumberTagStatements = {ArrayList@1520} size = 1
i18n = {I18n@1521}
currentScenarioOutline = null
我无法看到在黄瓜功能下检索path = "test/01-automation.feature"
。
答案 0 :(得分:1)
您是否尝试过类似((CucumberFeatureWrapper)test[0]).getCucumberFeature().getPath()
的内容?