BDDpluging, reports, and tags
jenkins/ZenProject/pipeline/head There was a failure building this commit

This commit is contained in:
2024-10-08 03:16:03 -04:00
parent 1bc6cf564c
commit 0e81fec560
4 changed files with 62 additions and 12 deletions
+4 -2
View File
@@ -1,6 +1,8 @@
Feature: Home page of the application
@Smoke
Scenario: Leave a comment into Zenful.cloud
Given Initialize the remote webdriver Firefox
And navigate to "https://zenful.cloud"
When User type text into the text box and hit click
Then Text is displayed "True"
When User type text into the text box and hit click
Then Text is displayed "True"
+2 -4
View File
@@ -3,10 +3,8 @@ package testNGRunner;
import io.cucumber.testng.AbstractTestNGCucumberTests;
import io.cucumber.testng.CucumberOptions;
@CucumberOptions(
features = "src/main/java/features",
glue = "stepDefinition"
)
@CucumberOptions(features = "src/main/java/features", glue = "stepDefinition", monochrome = false, plugin = { "pretty",
"html:BDDrepo/bddReports" }, tags = "@Smoke")
public class TestRunner extends AbstractTestNGCucumberTests {
}