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 was archived by the owner on Jul 17, 2020. It is now read-only.
// scenarioExtentTestscenario = feature.createNode(Scenario.class, "Jeff returns a faulty microwave");
ExtentTeststep1 = scenario.createNode(Given.class, "Jeff has bought a microwave for $100");
step1.info("Some message here");
step1.pass("Passed");
The step1 node is created in scenario and marked as pass. However, the info message that I'm logging is not displayed.
However, I'm able to log the info message if I use as follows:
// scenarioExtentTestscenario = feature.createNode("Scenario: Jeff returns a faulty microwave");
ExtentTeststep1 = scenario.createNode("Given: Jeff has bought a microwave for $100");
step1.info("Some message here");
step1.pass("Passed");