BDDpluging, reports, and tags

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
File diff suppressed because one or more lines are too long
+6 -6
View File
@@ -35,7 +35,7 @@
<a href="#"><span class="badge badge-primary">Zenful</span></a>
</li>
<li class="m-r-10">
<a href="#"><span class="badge badge-primary">Oct 4, 2024 03:29:39 AM</span></a>
<a href="#"><span class="badge badge-primary">Oct 8, 2024 03:09:11 AM</span></a>
</li>
</ul>
</div>
@@ -81,7 +81,7 @@
<div class="test-detail">
<p class="name">Test msg</p>
<p class="text-sm">
<span>3:29:42AM</span> / <span>00:00:00:000</span>
<span>3:09:17 AM</span> / <span>00:00:00:000</span>
<span class="badge pass-bg log float-right">Pass</span>
</p>
</div>
@@ -90,8 +90,8 @@
<div class="p-v-10">
<div class="info">
<h5 class="test-status text-pass">Test msg</h5>
<span class='badge badge-success'>10.04.2024 3:29:42AM</span>
<span class='badge badge-danger'>10.04.2024 3:29:42AM</span>
<span class='badge badge-success'>10.08.2024 3:09:17 AM</span>
<span class='badge badge-danger'>10.08.2024 3:09:17 AM</span>
<span class='badge badge-default'>00:00:00:000</span>
&middot; <span class='uri-anchor badge badge-default'>#test-id=1</span>
<span title='Skip to the next failed step' class='badge badge-danger pointer float-right ne ml-1'><i class="fa fa-fast-forward"></i></span>
@@ -115,13 +115,13 @@
<div class="col-md-3">
<div class="card"><div class="card-body">
<p class="m-b-0">Started</p>
<h3>Oct 4, 2024 03:29:39 AM</h3>
<h3>Oct 8, 2024 03:09:11 AM</h3>
</div></div>
</div>
<div class="col-md-3">
<div class="card"><div class="card-body">
<p class="m-b-0">Ended</p>
<h3>Oct 4, 2024 03:29:42 AM</h3>
<h3>Oct 8, 2024 03:09:18 AM</h3>
</div></div>
</div>
<div class="col-md-3">
+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 {
}