Scenario: User can add a new page from the content wizard
   Given a logged in user
    When I navigate to add wizard
     and create a new page
    Then I should see a page

Scenarion: User can an event from the content wizard
   Given a logged in user
    When I navigate to add wizard
     and create a new event
    Then I should see a new event with the selected timeframe

Scenario: User can add a new folder from the content wizard
   Given a logged in user
    When I navigate to add wizard
     and create a new folder
    Then I should see a new folder created

Scenario: User can add a new link from the content wizard
   Given a logged in user
    When I navigate to add wizard
     and create a new link
    Then I should see a new link created

Scenario: User can add a news item from the content wizard
   Given a logged in user
    When I navigate to add wizard
     and create a new item
    Then I should see a news item created

Scenario: User can upload files from the content wizard
   Given a logged in user
    When I navigate to add wizard
     and I upload a file through browse
    Then I should see the slected file uploaded

Scenario: User can upload files from the content wizard through drag and drop
   Given a logged in user
    When I navigate to add wizard
     and I upload a file through dragdrop
    Then I should see the selected file uploaded

Scenario: User can close the content wizard without performing any action
   Given a logged in user
    When I navigate to add wizard
     and I click close without performing any action
    Then I should see the content wizard close up

