Is there any way to get karate report in Excel or In karate can we convert cucumber html report in excel?
I have tried with below code:
@RunWith(Cucumber.class)
@CucumberOptions(plugin = {"info.cukes.formatter.xls.XLSOutputFormatter"})
but the dependency for this is missing. Below is the dependency which i tried to use.
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-jvm-xls</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>