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
m (pair before/after with missing post step)
m (availability?)
Line 4: Line 4:


=== And I follow "Course 1" ->  And I am on "Course 1" course homepage ===
=== And I follow "Course 1" ->  And I am on "Course 1" course homepage ===
Available since Moodle 3.1.6, 3.2.3 and up.


<b>Before:</b>
<b>Before:</b>

Revision as of 17:21, 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

Available since Moodle 3.1.6, 3.2.3 and up.

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