Commit 7b118e8056e67f10f3ad8186f1f06f49b05ccf9a
1 parent
9a682543
Exists in
master
and in
27 other branches
tests-fix: removed @selenium when it is not needed
Showing
2 changed files
with
4 additions
and
14 deletions
Show diff stats
features/delete_profile.feature
... | ... | @@ -13,7 +13,6 @@ Feature: delete profile |
13 | 13 | | sample-community | Sample Community | |
14 | 14 | And "Maria Silva" is a member of "Sample Community" |
15 | 15 | |
16 | - @selenium | |
17 | 16 | Scenario: deleting profile |
18 | 17 | Given I am logged in as "joaosilva" |
19 | 18 | And I am on joaosilva's control panel |
... | ... | @@ -46,7 +45,6 @@ Feature: delete profile |
46 | 45 | When I follow "Community Info and settings" |
47 | 46 | Then I should see "Delete profile" |
48 | 47 | |
49 | - @selenium | |
50 | 48 | Scenario: community admin deletes the community |
51 | 49 | Given "Joao Silva" is admin of "Sample Community" |
52 | 50 | And I am logged in as "joaosilva" |
... | ... | @@ -75,7 +73,6 @@ Feature: delete profile |
75 | 73 | When I follow "Enterprise Info and settings" |
76 | 74 | Then I should see "Delete profile" |
77 | 75 | |
78 | - @selenium | |
79 | 76 | Scenario: enterprise admin deletes the enterprise |
80 | 77 | Given the following enterprise |
81 | 78 | | identifier | name | |
... | ... | @@ -101,7 +98,6 @@ Feature: delete profile |
101 | 98 | And I go to /myprofile/sample-enterprise/profile_editor/destroy_profile |
102 | 99 | Then I should see "Access denied" |
103 | 100 | |
104 | - @selenium | |
105 | 101 | Scenario: environment admin deletes profile |
106 | 102 | Given I am logged in as admin |
107 | 103 | And I am on joaosilva's control panel | ... | ... |
features/upload_files.feature
... | ... | @@ -8,7 +8,6 @@ Feature: upload files |
8 | 8 | | joaosilva | Joao Silva | |
9 | 9 | And I am logged in as "joaosilva" |
10 | 10 | |
11 | - @selenium | |
12 | 11 | Scenario: provile links to upload files to community's gallery |
13 | 12 | Given the following communities |
14 | 13 | | identifier | name | owner | |
... | ... | @@ -16,12 +15,9 @@ Feature: upload files |
16 | 15 | And the following galleries |
17 | 16 | | owner | name | |
18 | 17 | | sample-community | Gallery test | |
19 | - And I go to sample-community's profile | |
20 | - And I follow "Profile" | |
21 | - And I follow "0 pictures" | |
22 | - And I should see "Upload files" | |
18 | + And I go to article "Gallery test" | |
19 | + Then I should see "Upload files" | |
23 | 20 | |
24 | - @selenium | |
25 | 21 | Scenario: provile links to upload files to enterprise's gallery |
26 | 22 | Given the following enterprises |
27 | 23 | | identifier | name | owner | |
... | ... | @@ -29,10 +25,8 @@ Feature: upload files |
29 | 25 | And the following galleries |
30 | 26 | | owner | name | |
31 | 27 | | sample-enterprise | Gallery test | |
32 | - And I go to sample-enterprise's profile | |
33 | - And I follow "Profile" | |
34 | - And I follow "0 pictures" | |
35 | - And I should see "Upload files" | |
28 | + And I go to article "Gallery test" | |
29 | + Then I should see "Upload files" | |
36 | 30 | |
37 | 31 | Scenario: not provile links to upload files on blogs |
38 | 32 | Given the following communities | ... | ... |