Forum Discussion
mpkorstanje
5 years agoOccasional Contributor
I got the impression this wasn't a feature request but rather a "How do I do x" disguised as one.
To attach data
package io.cucumber.examples.java;
import io.cucumber.java.Before;
import io.cucumber.java.Scenario;
import io.cucumber.java.en.Given;
public class RpnCalculatorSteps {
private Scenario scenario;
@Before
public void after(Scenario scenario) {
this.scenario = scenario;
}
@Given("I log some data")
public void log_some_data(){
scenario.attach("{hello:\"World\"}", "application/json", "hell-world.json");
}
}
This then shows up in the report as:
Given I log some data
{hello:"World"}
aslakhellesoy
Alumni
5 years agoWell spotted XY problem mpkorstanje !