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: Difference between revisions

From MoodleDocs
(Created page with "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 compati...")
 
m (pair before/after with missing post step)
Line 11: Line 11:
     And I am on site homepage
     And I am on site homepage
     And I follow "Course 1"
     And I follow "Course 1"
    Then I should see "Topic 1"
</code>
</code>
<b>After:</b>
<b>After:</b>

Revision as of 15:54, 3 May 2017

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