mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
15 lines
430 B
Gherkin
15 lines
430 B
Gherkin
Feature: Login
|
|
|
|
Scenario Outline: Login
|
|
Given I logout
|
|
When I login using "<Username>" and "<Password>"
|
|
Then I should see "<Result>" texts
|
|
|
|
@ios@android
|
|
Examples:
|
|
| Username | Password | Result |
|
|
| usertest01 | b0dPasswd | Invalid username or password|
|
|
| Badusrname | hackproof | Invalid username or password|
|
|
| Badusrn0me | badPasswd | Invalid username or password|
|
|
| usertest01 | hackproof | Home |
|