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
var sparkReporter = new ExtentSparkReporter(...)
_extentReports = new ExtentReports();
_extentReports.GherkinDialect = "ja";
_extentReports.AttachReporter(sparkReporter);
...
_feature = _extentReports.CreateTest(
new GherkinKeyword(Feature.Name.MapToLocaleKeyword()), // change "Feature" to "フィーチャ"
FeatureContext.FeatureInfo.Title,
string.Empty);
...
_extentReports.Flush();
But the report file still have SpecFlow keyword as English
Can you help me about that. Thanks
The text was updated successfully, but these errors were encountered:
I try to generate a Japanese report but no idea how to do that
What I haved tried
I am using .NET 8 with SpecFlow
The feature file is Japanese (followed this keyword https://github.com/cucumber/gherkin/blob/main/gherkin-languages.json)
var sparkReporter = new ExtentSparkReporter(...)
_extentReports = new ExtentReports();
_extentReports.GherkinDialect = "ja";
_extentReports.AttachReporter(sparkReporter);
...
_feature = _extentReports.CreateTest(
new GherkinKeyword(Feature.Name.MapToLocaleKeyword()), // change "Feature" to "フィーチャ"
FeatureContext.FeatureInfo.Title,
string.Empty);
...
_extentReports.Flush();
But the report file still have SpecFlow keyword as English
Can you help me about that. Thanks
The text was updated successfully, but these errors were encountered: