|
1 | 1 | *** Settings ***
|
2 |
| -Documentation Verify account activation scenarios |
3 |
| -Library Selenium2Library |
4 |
| -Suite Setup Before Test Suite |
5 |
| -Suite Teardown After Test Suite |
6 |
| -Test Setup Before Test |
7 |
| -Force Tags account activation logic |
| 2 | +Documentation Verify account activation scenarios |
| 3 | +Library Selenium2Library |
| 4 | +Suite Setup Before Test Suite |
| 5 | +Suite Teardown After Test Suite |
| 6 | +Test Setup Before Test |
| 7 | +Force Tags account activation logic |
8 | 8 |
|
9 | 9 | *** Test Cases ***
|
10 | 10 | Activate account with full info
|
11 |
| - [Documentation] Verify account activation by filling all fields |
12 |
| - Input Text id=login 1st-test-login |
13 |
| - Input Text id=name Test Suite |
14 |
| - Input Text id=password test-password |
15 |
| - Input Text id=passwordConfirmation test-password |
16 |
| - Input Text id=activationKey 7777744444 |
17 |
| - Submit Form id=activate-account-form |
18 |
| - Location Should Be ${SITE_URL}/account/auth |
19 |
| - Element Text Should Be id=msg-success Account successfully activated! Now you can pass authentication. |
| 11 | + [Documentation] Verify account activation by filling all fields |
| 12 | + Input Text id=login 1st-test-login |
| 13 | + Input Text id=name Test Suite |
| 14 | + Input Text id=password test-password |
| 15 | + Input Text id=passwordConfirmation test-password |
| 16 | + Input Text id=activationKey 7777744444 |
| 17 | + Submit Form id=activate-account-form |
| 18 | + Location Should Be ${SITE_URL}/account/auth |
| 19 | + Element Text Should Be id=msg-success Account successfully activated! Now you can pass authentication. |
20 | 20 |
|
21 | 21 | Activate account with only required info
|
22 |
| - [Documentation] Verify account activation by filling only mandatory fields |
23 |
| - Input Text id=login 2nd-test-login |
24 |
| - Input Text id=name ${EMPTY} |
25 |
| - Input Text id=password test-password |
26 |
| - Input Text id=passwordConfirmation test-password |
27 |
| - Input Text id=activationKey 4444477777 |
28 |
| - Submit Form id=activate-account-form |
29 |
| - Location Should Be ${SITE_URL}/account/auth |
30 |
| - Element Text Should Be id=msg-success Account successfully activated! Now you can pass authentication. |
| 22 | + [Documentation] Verify account activation by filling only mandatory fields |
| 23 | + Input Text id=login 2nd-test-login |
| 24 | + Input Text id=name ${EMPTY} |
| 25 | + Input Text id=password test-password |
| 26 | + Input Text id=passwordConfirmation test-password |
| 27 | + Input Text id=activationKey 4444477777 |
| 28 | + Submit Form id=activate-account-form |
| 29 | + Location Should Be ${SITE_URL}/account/auth |
| 30 | + Element Text Should Be id=msg-success Account successfully activated! Now you can pass authentication. |
31 | 31 |
|
32 | 32 | *** Keywords ***
|
33 | 33 | Before Test Suite
|
|
0 commit comments