From 946d874284db05d67d82eb3b34b205ae35e12d70 Mon Sep 17 00:00:00 2001 From: sruthijk <114891803+sruthijk@users.noreply.github.com> Date: Thu, 8 Dec 2022 00:51:56 -0500 Subject: [PATCH 1/2] Update HelloWorld.java --- HelloWorld/src/HelloWorld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HelloWorld/src/HelloWorld.java b/HelloWorld/src/HelloWorld.java index 82441ec..6426e95 100644 --- a/HelloWorld/src/HelloWorld.java +++ b/HelloWorld/src/HelloWorld.java @@ -3,7 +3,7 @@ public class HelloWorld { public static void main(String[] args) { - // TODO Auto-generated method stub + System.out.println("HELLO WORLD"); From 67e0510d814bc0a115940af642a16ec4177331b8 Mon Sep 17 00:00:00 2001 From: sruthijk <114891803+sruthijk@users.noreply.github.com> Date: Thu, 8 Dec 2022 00:53:25 -0500 Subject: [PATCH 2/2] Update AddCustomerTest.java --- DataDrivenTesting/src/test/java/testcases/AddCustomerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataDrivenTesting/src/test/java/testcases/AddCustomerTest.java b/DataDrivenTesting/src/test/java/testcases/AddCustomerTest.java index 84b66ae..6f124e1 100644 --- a/DataDrivenTesting/src/test/java/testcases/AddCustomerTest.java +++ b/DataDrivenTesting/src/test/java/testcases/AddCustomerTest.java @@ -17,7 +17,7 @@ public class AddCustomerTest extends BaseClass { @Test(dataProvider="getData") public void addCustomer(String firstname,String lastname,String postcode) { - driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS); + driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); WebElement add_customerBtn = driver.findElement(By.cssSelector(objectRepo.getProperty("add_customerBtn")));