@@ -4,7 +4,7 @@ Feature: Letcode Input Page
44 Scenario Outline : As a user, I can input full name in the text field
55
66 Given I am on letcode workspace page
7- When I click input edit button
7+ When I click input page
88 And I input first name <firstName> and last name <lastName> in the text field
99 Then The first input field text should be equal to the combination of <firstName> and <lastName>
1010
@@ -16,7 +16,7 @@ Feature: Letcode Input Page
1616 Scenario Outline : As a user, I can append text in the field and press tab
1717
1818 Given I am on letcode workspace page
19- When I click input edit button
19+ When I click input page
2020 And I append the text: `<append> ` inside the input field and press tab
2121 Then The second input field text should include the appended text: `<append> `
2222
@@ -28,7 +28,7 @@ Feature: Letcode Input Page
2828 Scenario Outline : As a user, I can verify the text inside the input field
2929
3030 Given I am on letcode workspace page
31- When I click input edit button
31+ When I click input page
3232 Then The third input field text should include the text: `<text> `
3333
3434 Examples :
@@ -39,7 +39,7 @@ Feature: Letcode Input Page
3939 Scenario Outline : As a user, I can clear the text inside the input field
4040
4141 Given I am on letcode workspace page
42- When I click input edit button
42+ When I click input page
4343 And I clear the text of the fourth input field
4444 Then The fourth input field text should be blank after clearing the value
4545
@@ -51,7 +51,7 @@ Feature: Letcode Input Page
5151 Scenario Outline : As a user, I can verify that the input field is disabled
5252
5353 Given I am on letcode workspace page
54- When I click input edit button
54+ When I click input page
5555 Then The fifth input field text should be disabled
5656
5757 Examples :
@@ -62,7 +62,7 @@ Feature: Letcode Input Page
6262 Scenario Outline : As a user, I can verify that the input field is read only
6363
6464 Given I am on letcode workspace page
65- When I click input edit button
65+ When I click input page
6666 Then The sixth input field text should be read only
6767
6868 Examples :
0 commit comments