1@block @block_site_main_menu
2Feature: Add URL to main menu block
3  In order to add helpful resources for students
4  As a admin
5  I need to add URLs to the main menu block and check it works.
6
7  @javascript
8  Scenario: Add a URL in menu block and ensure it appears
9    Given I log in as "admin"
10    And I am on site homepage
11    And I navigate to "Turn editing on" in current page administration
12    And I add the "Main menu" block
13    When I add a "URL" to section "0" and I fill the form with:
14      | Name | google |
15      | Description | gooooooooogle |
16      | External URL | http://www.google.com |
17      | id_display | In pop-up |
18    Then "google" "link" should exist in the "Main menu" "block"
19    And "Add an activity or resource" "button" should exist in the "Main menu" "block"
20