A Pretty Approach To Parse Gherkin Feature File To Json
This code is to convert your Gherkin feature file to JSON format based on JSON Formatter framework. Gherkin to JSON Parser Main //Gherkin feature file to JSON converted main class public class GToJRun { // Here set the Gherkin path to fetch feature file and JSON file path to // write into JSON format private static String featurePath = “c:\Json\login.feature”; private static String jasonPath = “c:\Json\login.json”; // Set as pretty / ugly format for for JSON output....