blob: 1e220116065ac741d622d3a06f09916807c05275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Feature: login and logout
@smoke
Scenario: See user panel after login
Given I start bitmask for the first time
When I login
Then I should see the user panel
@smoke
Scenario: Log in and log out
Given I start bitmask for the first time
When I login
And I logout
Then I should see the second login page
@smoke
Scenario: Turn VPN on
Given I start bitmask for the first time
And An initial network configuration
When I login
And I activate VPN
Then I should have my ass covered
@wip
Scenario: Turn VPN on and off
Given I start bitmask for the first time
And An initial network configuration
When I login
And I activate VPN
And I deactivate VPN
Then My network should be configured as before
|