1
1
package stepDefinitions ;
2
2
3
+ import org .openqa .selenium .*;
3
4
import org .openqa .selenium .By ;
4
5
import org .openqa .selenium .remote .RemoteWebDriver ;
5
6
import org .testng .Assert ;
@@ -14,33 +15,38 @@ public class ToDoStepDefinition extends TestRunner {
14
15
15
16
16
17
@ Given ("^user is on home Page$" )
17
- public void user_already_on_home_page () {
18
+ public void user_already_on_home_page () throws InterruptedException {
18
19
System .out .println (driver .getCapabilities ());
19
20
driver .get ("https://lambdatest.github.io/sample-todo-app/" );
20
-
21
+ Thread . sleep ( 5000 );
21
22
}
22
23
23
24
@ When ("^select First Item$" )
24
25
public void select_first_item () {
25
- driver .findElement (By .name ("li1" )).click ();
26
+ WebElement li = driver .findElement (By .name ("li1" ));
27
+ li .click ();
26
28
}
27
29
28
30
@ Then ("^select second item$" )
29
31
public void select_second_item () {
30
- driver .findElement (By .name ("li2" )).click ();
32
+ WebElement li = driver .findElement (By .name ("li2" ));
33
+ li .click ();
31
34
}
32
35
33
36
@ Then ("^add new item$" )
34
- public void add_new_item () {
35
- driver .findElement (By .id ("sampletodotext" )).clear ();
37
+ public void add_new_item () throws InterruptedException {
38
+ WebElement text = driver .findElement (By .id ("sampletodotext" ));
39
+ text .clear ();
36
40
driver .findElement (By .id ("sampletodotext" )).sendKeys ("Yey, Let's add it to list" );
41
+ Thread .sleep (1000 );
37
42
driver .findElement (By .id ("addbutton" )).click ();
43
+ Thread .sleep (2000 );
38
44
}
39
45
40
46
@ Then ("^verify added item$" )
41
47
public void verify_added_item () {
42
48
String item = driver .findElement (By .xpath ("/html/body/div/div/div/ul/li[6]/span" )).getText ();
43
- Assert .assertTrue (item .contains ("Yey, Let's add it to list" ));
49
+ Assert .assertTrue (item .contains ("Yey, Let's add it to list" ), "Expected : Yey, Let's add it to list Actual : " + item );
44
50
}
45
51
46
52
0 commit comments