Я пытаюсь настроить отчет по экстентам, который является сторонним инструментом отчетности, добавленным в мою среду огурцов, где я хочу настроить имя файла report.html на «Outputfilename» .html, который мне не удалосьсделать так, как значение «Outputfilename» исходит из моего конфигурационного файла.
вот мой код testrunner
@RunWith(Cucumber.class)
@CucumberOptions(
features = ".//src//test//java//FeatureList",glue = "stepDefinations",
plugin = { "com.cucumber.listener.ExtentCucumberFormatter:target/cucumber-reports/"+Outputfilename+".html",
"junit:target/cucumber-results.xml"},
tags="@smoke",
monochrome = true
)
public class TestRunner {
private static final String Outputfilename = FileReader.getInstance().getConfigReader().getReportPath();
Буду очень признателен за вашу помощь.