1 |
efrain |
1 |
@mod @mod_lti
|
|
|
2 |
Feature: Verify the breadcrumbs in manage tools site administration pages
|
|
|
3 |
Whenever I navigate to manage tools page in site administration
|
|
|
4 |
As an admin
|
|
|
5 |
The breadcrumbs should be visible
|
|
|
6 |
|
|
|
7 |
Background:
|
|
|
8 |
Given I log in as "admin"
|
|
|
9 |
|
|
|
10 |
Scenario: Verify the breadcrumbs in manage tools page as an admin
|
|
|
11 |
Given I navigate to "Plugins > Activity modules > External tool > Manage tools" in site administration
|
|
|
12 |
And "Manage tools" "text" should exist in the ".breadcrumb" "css_element"
|
|
|
13 |
And "External tool" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
14 |
And "Activity modules" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
15 |
When I click on "configure a tool manually" "link"
|
|
|
16 |
Then "External tool configuration" "text" should exist in the ".breadcrumb" "css_element"
|
|
|
17 |
And "Manage tools" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
18 |
And "External tool" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
19 |
And "Activity modules" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
20 |
And I press "Cancel"
|
|
|
21 |
And I click on "Manage preconfigured tools" "link"
|
|
|
22 |
And "Manage preconfigured tools" "text" should exist in the ".breadcrumb" "css_element"
|
|
|
23 |
And "External tool" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
24 |
And "Activity modules" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
25 |
And I click on "Add preconfigured tool" "link"
|
|
|
26 |
And "External tool configuration" "text" should exist in the ".breadcrumb" "css_element"
|
|
|
27 |
And "Manage tools" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
28 |
And "External tool" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
29 |
And "Activity modules" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
30 |
And I press "Cancel"
|
|
|
31 |
And I navigate to "Plugins > Activity modules > External tool > Manage tools" in site administration
|
|
|
32 |
And I click on "Manage external tool registrations" "link"
|
|
|
33 |
And "Manage external tool registrations" "text" should exist in the ".breadcrumb" "css_element"
|
|
|
34 |
And "External tool" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
35 |
And "Activity modules" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
36 |
And I click on "Configure a new external tool registration" "link"
|
|
|
37 |
And "Edit preconfigured tool" "text" should exist in the ".breadcrumb" "css_element"
|
|
|
38 |
And "Manage external tool registrations" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
39 |
And "External tool" "link" should exist in the ".breadcrumb" "css_element"
|
|
|
40 |
And "Activity modules" "link" should exist in the ".breadcrumb" "css_element"
|