Создать настраиваемое имя файла отчета в @CucumberOptions - PullRequest
0 голосов
/ 18 октября 2018

Я пытаюсь настроить отчет по экстентам, который является сторонним инструментом отчетности, добавленным в мою среду огурцов, где я хочу настроить имя файла 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();

Буду очень признателен за вашу помощь.

1 Ответ

0 голосов
/ 03 января 2019

Наконец-то я это исправил -

Так что в основном нам нужно изменить класс бегуна примерно так:

package runners;

import PageObjectRep.CF;
import com.cucumber.listener.ExtentProperties;
import com.cucumber.listener.Reporter;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import managers.FileReader;
import org.apache.log4j.PropertyConfigurator;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;

import java.io.File;

@RunWith(Cucumber.class)
@CucumberOptions(
        features = ".//src//test//java//FeatureList",glue = "stepDefinations",
        plugin = { "com.cucumber.listener.ExtentCucumberFormatter:",
                "junit:target/cucumber-results.xml"},
        tags="@test",
        monochrome = true
)
public class TestRunner {
    static String ReportName= CF.ReportName(); //function which creates file name as per the execution and saved in string.
    @BeforeClass
    public static void setup() {
        ExtentProperties extentProperties = ExtentProperties.INSTANCE;
        extentProperties.setReportPath("target/cucumber-reports/"+ReportName+".html"); //used same string name to create the file with the same name.
        PropertyConfigurator.configure(".//src//log4j.properties");
    }
...