fix: 28
jenkins/ZenProject/pipeline/head There was a failure building this commit

This commit is contained in:
2024-10-06 19:43:14 -04:00
parent 1bc6cf564c
commit 1cee2d7630
2 changed files with 32 additions and 29 deletions
+8 -8
View File
@@ -35,7 +35,7 @@
<a href="#"><span class="badge badge-primary">Zenful</span></a> <a href="#"><span class="badge badge-primary">Zenful</span></a>
</li> </li>
<li class="m-r-10"> <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 6, 2024 04:59:42 PM</span></a>
</li> </li>
</ul> </ul>
</div> </div>
@@ -74,14 +74,14 @@
</ul> </ul>
</div> <div class="test-list-wrapper scrollable"> </div> <div class="test-list-wrapper scrollable">
<ul class="test-list-item"> <ul class="test-list-item">
<li class="test-item" status="pass" test-id="1" <li class="test-item" status="pass" test-id="2"
author="" author=""
tag="" tag=""
device=""> device="">
<div class="test-detail"> <div class="test-detail">
<p class="name">Test msg</p> <p class="name">Test msg</p>
<p class="text-sm"> <p class="text-sm">
<span>3:29:42AM</span> / <span>00:00:00:000</span> <span>4:59:49PM</span> / <span>00:00:00:000</span>
<span class="badge pass-bg log float-right">Pass</span> <span class="badge pass-bg log float-right">Pass</span>
</p> </p>
</div> </div>
@@ -90,10 +90,10 @@
<div class="p-v-10"> <div class="p-v-10">
<div class="info"> <div class="info">
<h5 class="test-status text-pass">Test msg</h5> <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-success'>10.06.2024 4:59:49PM</span>
<span class='badge badge-danger'>10.04.2024 3:29:42AM</span> <span class='badge badge-danger'>10.06.2024 4:59:49PM</span>
<span class='badge badge-default'>00:00:00:000</span> <span class='badge badge-default'>00:00:00:000</span>
&middot; <span class='uri-anchor badge badge-default'>#test-id=1</span> &middot; <span class='uri-anchor badge badge-default'>#test-id=2</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> <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>
<span title='Collapse all nodes' class='badge badge-default pointer float-right ct ml-1'><i class="fa fa-compress"></i></span> <span title='Collapse all nodes' class='badge badge-default pointer float-right ct ml-1'><i class="fa fa-compress"></i></span>
<span title='Expand all nodes' class='badge badge-default pointer float-right et'><i class="fa fa-expand"></i></span> <span title='Expand all nodes' class='badge badge-default pointer float-right et'><i class="fa fa-expand"></i></span>
@@ -115,13 +115,13 @@
<div class="col-md-3"> <div class="col-md-3">
<div class="card"><div class="card-body"> <div class="card"><div class="card-body">
<p class="m-b-0">Started</p> <p class="m-b-0">Started</p>
<h3>Oct 4, 2024 03:29:39 AM</h3> <h3>Oct 6, 2024 04:59:42 PM</h3>
</div></div> </div></div>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<div class="card"><div class="card-body"> <div class="card"><div class="card-body">
<p class="m-b-0">Ended</p> <p class="m-b-0">Ended</p>
<h3>Oct 4, 2024 03:29:42 AM</h3> <h3>Oct 6, 2024 04:59:50 PM</h3>
</div></div> </div></div>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
@@ -10,6 +10,7 @@ import java.io.IOException;
public class StepDefinition extends Initialization { public class StepDefinition extends Initialization {
// Write code here that turns the phrase above into concrete actions
@Given("Initialize the remote webdriver Firefox") @Given("Initialize the remote webdriver Firefox")
public void initializeTheRemoteWebdriverFirefox() { public void initializeTheRemoteWebdriverFirefox() {
BrowserInit("firefox"); BrowserInit("firefox");
@@ -20,12 +21,14 @@ public class StepDefinition extends Initialization {
// Write code here that turns the phrase above into concrete actions // Write code here that turns the phrase above into concrete actions
driver.get(url); driver.get(url);
} }
@When("User type text into the text box and hit click") @When("User type text into the text box and hit click")
public void user_type_text_into_the_text_box_and_hit_click() throws IOException, InterruptedException { public void user_type_text_into_the_text_box_and_hit_click() throws IOException, InterruptedException {
// Write code here that turns the phrase above into concrete actions // Write code here that turns the phrase above into concrete actions
HomePage hp = new HomePage(); HomePage hp = new HomePage();
hp.insertText(); hp.insertText();
} }
@Then("Text is displayed {string}") @Then("Text is displayed {string}")
public void text_is_displayed(String string) { public void text_is_displayed(String string) {
// Write code here that turns the phrase above into concrete actions // Write code here that turns the phrase above into concrete actions