Reputation: 2030
I am using @badeball/cypress-cucumber-preprocessor
for my automation. I am looking for how to print output/log in html report. In Cucumber-Java I have scenario.write("hello");
statement to print messages in cucumber html report. Likewise how can i print in Cypress-Cucumber report?
Upvotes: 1
Views: 1137
Reputation: 2030
I guess I found an answer and it works, but let me know if there is any other option.
attach("hello world");
Upvotes: 1