You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
In my project I am using both Extent Report and Cucumber Extent Report.
Features i am getting from Extent report :-
public static void logStart(String testname) throws ClassNotFoundException {
// logger = extent.startTest("..." + testname);
// logger = extent.logger = extent.createTest(testname, testname);
Log.startTestCase(testname);
}
public static void reportInfo(String info) {
logger.log(Status.INFO, info);
Log.info(info);
}
But how i can get the same kind of methods in Cucumber extent report as its only give two methods
1.Reporter.addStepLog("");
2.Reporter.addScenarioLog("");
The text was updated successfully, but these errors were encountered: