You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
driver.findElement(By.id("sampletodotext")).sendKeys(" List Item 6");
63
69
driver.findElement(By.id("addbutton")).click();
64
70
@@ -68,6 +74,8 @@ public void basicTest() throws InterruptedException {
68
74
driver.findElement(By.id("sampletodotext")).sendKeys(" List Item 8");
69
75
driver.findElement(By.id("addbutton")).click();
70
76
77
+
driver.executeScript("lambdatest_executor: {\"action\": \"stepcontext\", \"arguments\": {\"data\": \"Checking More Items\", \"level\": \"info\"}}");
78
+
71
79
System.out.println("Checking Another Box");
72
80
driver.findElement(By.name("li1")).click();
73
81
@@ -81,6 +89,7 @@ public void basicTest() throws InterruptedException {
81
89
driver.findElement(By.name("li8")).click();
82
90
Thread.sleep(300);
83
91
92
+
driver.executeScript("lambdatest_executor: {\"action\": \"stepcontext\", \"arguments\": {\"data\": \"Adding and Verify List Items\", \"level\": \"info\"}}");
84
93
System.out.println("Entering Text");
85
94
driver.findElement(By.id("sampletodotext")).sendKeys("Get Taste of Lambda and Stick to It");
86
95
@@ -102,6 +111,7 @@ public void basicTest() throws InterruptedException {
102
111
103
112
@AfterMethod
104
113
publicvoidtearDown() {
114
+
driver.executeScript("lambdatest_executor: {\"action\": \"stepcontext\", \"arguments\": {\"data\": \"Adding Test Result and Closing Browser\", \"level\": \"info\"}}");
0 commit comments