All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aventstack.extentreports.reporter.converters.ExtentHtmlReporterConverter Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package com.aventstack.extentreports.reporter.converters;

import java.util.List;

import com.aventstack.extentreports.model.Test;

public class ExtentHtmlReporterConverter {
	
	private String filePath;

	public ExtentHtmlReporterConverter(String filePath) {
		this.filePath = filePath;
	}
		
	public List parseAndGetModelCollection() {
		ExtentHtmlTestConverter converter = new ExtentHtmlTestConverter(filePath);
		List testList = converter.parseAndGetTests();
		return testList;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy