Skip to content
Snippets Groups Projects
Commit 58bf071c authored by Alexander Bias's avatar Alexander Bias
Browse files

Bugfix: Fix Behat test which checks the 'Hide link to the Moodle docs' feature...

Bugfix: Fix Behat test which checks the 'Hide link to the Moodle docs' feature which broke since the last release.
parent 3a13783b
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ Changes
### Unreleased
* 2021-08-16 - Bugfix: Fix Behat test which checks the 'Hide link to the Moodle docs' feature which broke since the last release.
* 2021-08-16 - Bugfix: In-course settings have been shown below course information banners instead of above them.
* 2021-08-16 - Improvement: Add in-course settings only to HTML tree of the setting is enabled.
* 2021-08-16 - Adjust activity_settings_incourse.mustache template based on changes in settings_link_page.mustache
......
......@@ -129,7 +129,7 @@ Feature: Configuring the theme_boost_campus plugin for the "Footer Layout Settin
# Given the following config values are set as admin:
# | config | value | plugin |
# | footerhidehelplink | 1 | theme_boost_campus |
Scenario: Enable Hide link to the Moodle docs"
Scenario: Enable "Hide link to the Moodle docs"
When I log in as "admin"
And I navigate to "Appearance > Boost Campus" in site administration
And I click on "Footer Layout Settings" "link"
......@@ -138,7 +138,7 @@ Feature: Configuring the theme_boost_campus plugin for the "Footer Layout Settin
And I log out
When I log in as "teacher1"
And I am on "Course 1" course homepage
Then I should not see "Moodle Docs for this page" in the "page-footer" "region"
Then "#page-footer p.helplink a[href^=\"https://docs.moodle.org/\"]" "css_element" should not be visible
# This scenario needs full browser support only for this Behat test to pass, otherwise javascript would not be needed.
@javascript
......@@ -155,7 +155,7 @@ Feature: Configuring the theme_boost_campus plugin for the "Footer Layout Settin
And I log out
When I log in as "teacher1"
And I am on "Course 1" course homepage
Then I should see "Moodle Docs for this page" in the "page-footer" "region"
Then "#page-footer p.helplink a[href^=\"https://docs.moodle.org/\"]" "css_element" should be visible
# This scenario needs full browser support only for this Behat test to pass, otherwise javascript would not be needed.
@javascript
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment