Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Acceptance testing/Compatibility changes

From MoodleDocs
Revision as of 15:54, 3 May 2017 by Eloy Lafuente (stronk7) (talk | contribs) (pair before/after with missing post step)

As new features are developed for Moodle, some UI changes can cause changes which unfortunately affect behat feature files. This page is intended to document important compatibility changes for behat test developers.

Moodle 3.3

And I follow "Course 1" -> And I am on "Course 1" course homepage

Before: Scenario: I am on the course homepage

   When I log in as "student1"
   And I am on site homepage
   And I follow "Course 1"
   Then I should see "Topic 1"

After: Scenario: I am on the course homepage

   When I log in as "student1"
   And I am on "Course 1" course homepage
   Then I should see "Topic 1"

Moodle 3.2

Moodle 3.1