Test msg
-
10.04.2024 3:29:42 AM
-
10.04.2024 3:29:42 AM
+
10.06.2024 4:59:49 PM
+
10.06.2024 4:59:49 PM
00:00:00:000
-·
#test-id=1
+·
#test-id=2
@@ -115,13 +115,13 @@
Started
-
Oct 4, 2024 03:29:39 AM
+
Oct 6, 2024 04:59:42 PM
Ended
-
Oct 4, 2024 03:29:42 AM
+
Oct 6, 2024 04:59:50 PM
diff --git a/src/main/java/stepDefinition/StepDefinition.java b/src/main/java/stepDefinition/StepDefinition.java
index b05d74a..a541c98 100644
--- a/src/main/java/stepDefinition/StepDefinition.java
+++ b/src/main/java/stepDefinition/StepDefinition.java
@@ -10,26 +10,29 @@ import java.io.IOException;
public class StepDefinition extends Initialization {
- @Given("Initialize the remote webdriver Firefox")
- public void initializeTheRemoteWebdriverFirefox() {
- BrowserInit("firefox");
- }
+ // Write code here that turns the phrase above into concrete actions
+ @Given("Initialize the remote webdriver Firefox")
+ public void initializeTheRemoteWebdriverFirefox() {
+ BrowserInit("firefox");
+ }
- @Given("navigate to {string}")
- public void navigate_to(String url) {
- // Write code here that turns the phrase above into concrete actions
- driver.get(url);
- }
- @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 {
- // Write code here that turns the phrase above into concrete actions
- HomePage hp = new HomePage();
- hp.insertText();
- }
- @Then("Text is displayed {string}")
- public void text_is_displayed(String string) {
- // Write code here that turns the phrase above into concrete actions
- HomePage hp = new HomePage();
- hp.textConfirmation();
- }
+ @Given("navigate to {string}")
+ public void navigate_to(String url) {
+ // Write code here that turns the phrase above into concrete actions
+ driver.get(url);
+ }
+
+ @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 {
+ // Write code here that turns the phrase above into concrete actions
+ HomePage hp = new HomePage();
+ hp.insertText();
+ }
+
+ @Then("Text is displayed {string}")
+ public void text_is_displayed(String string) {
+ // Write code here that turns the phrase above into concrete actions
+ HomePage hp = new HomePage();
+ hp.textConfirmation();
+ }
}