【发布时间】:2020-07-03 05:29:45
【问题描述】:
- .feature 文件:
Feature: Test Log In Functionality
Scenario: The user should be able to login with correct userName & Password
Given user is on Login Page
When user enters the correct UserName & Password
Then user gets the Confirmation
Scenario Outline: User should Log In with below credentials
Given user is on Login Page
When user enters the correct Email <UserName>
And user enters the correct Password <Password>
And user enters the Log In Button
Then user gets the Confirmation
Examples:
| UserName | Password |
| shoryak3@outlook.com | Test@1234 |
| tim@Testmail.com | trpass |
| Rich@TestMail.com | rwpass |
【问题讨论】:
标签: java selenium cucumber gherkin