Moodle APIs 3.9
Moodle 3.9.13+ (Build: 20220325)
|
Public Member Functions | |
get_expand_navbar_step () | |
Step to open the navigation bar if it is needed. More... | |
getSession ($name=null) | |
Returns the Mink session. More... | |
i_am_on_course_homepage ($coursefullname) | |
Opens the course homepage. More... | |
i_am_on_course_homepage_with_editing_mode_on ($coursefullname) | |
Open the course homepage with editing mode enabled. More... | |
i_am_on_fixture_page ($url) | |
Visit a fixture page for testing stuff that is not available in core. More... | |
i_am_on_page (string $page) | |
Open a given page, belonging to a plugin or core component. More... | |
i_am_on_page_instance (string $identifier, string $type) | |
Open a given instance of a page, belonging to a plugin or core component. More... | |
i_am_on_page_instance_logged_in_as (string $identifier, string $type, string $username) | |
Open a given page logged in as a given user. More... | |
i_am_on_page_logged_in_as (string $page, string $username) | |
Open a given page logged in as a given user. More... | |
i_close_flat_navigation_drawer () | |
Closes the flat navigation drawer if it is open (does nothing if JS disabled) More... | |
i_collapse_node ($nodetext) | |
Collapses the selected node of the navigation tree that matches the text. More... | |
i_expand_node ($nodetext) | |
Expands the selected node of the navigation tree that matches the text. More... | |
i_follow_in_the_user_menu ($nodetext) | |
Click on an entry in the user menu. More... | |
i_navigate_to_in_current_page_administration ($nodetext) | |
Go to current page setting item. More... | |
i_navigate_to_in_site_administration ($nodetext) | |
Go to site administration item. More... | |
i_open_flat_navigation_drawer () | |
Opens the flat navigation drawer if it is not already open. More... | |
i_open_my_profile_in_edit_mode () | |
Opens the current users profile page in edit mode. More... | |
i_select_from_flat_navigation_drawer ($link) | |
Clicks link with specified id|title|alt|text in the flat navigation drawer. More... | |
navigation_node_should_be_expandable ($nodetext) | |
Returns true if the navigation node with the given text is expandable. More... | |
navigation_node_should_not_be_expandable ($nodetext) | |
Returns true if the navigation node with the given text is not expandable. More... | |
should_exist_in_current_page_administration ($element, $selectortype) | |
Checks that current page administration contains text. More... | |
should_not_exist_in_current_page_administration ($element, $selectortype) | |
Checks that current page administration contains text. More... | |
Public Attributes | |
const | EXTENDED_TIMEOUT = 10 |
And extended timeout for specific cases. More... | |
const | PAGE_READY_JS |
The JS code to check that the page is ready. More... | |
const | REDUCED_TIMEOUT = 2 |
Small timeout. More... | |
const | TIMEOUT = 6 |
The timeout for each Behat step (load page, wait for an element to load...). More... | |
Protected Member Functions | |
find_header_administration_menu ($mustexist=false) | |
Locates the administration menu in the <header> element and returns its xpath. More... | |
find_node_in_navigation ($nodetext, $parentnodes, $nodetype='link') | |
Finds a node in the Navigation or Administration tree. More... | |
find_page_administration_menu ($mustexist=false) | |
Locates the administration menu on the page (but not in the header) and returns its xpath. More... | |
get_navigation_node ($nodetext, $parentnode=null) | |
Helper function to get sub-navigation node. More... | |
get_node_text_node ($text, $branch=false, $collapsed=null, $exception=null) | |
Helper function to get a navigation nodes text element given its text from within the navigation block. More... | |
get_top_navigation_node ($nodetext) | |
Helper function to get top navigation node in tree. More... | |
go_to_main_course_page () | |
If we are not on the course main page, click on the course link in the navbar. | |
parse_page_name (string $page) | |
Parse a full page name like 'Admin notifications' or 'core_user > Preferences'. More... | |
resolve_core_page_instance_url (string $type, string $identifier) | |
Convert page names to URLs for steps like 'When I am on the "[identifier]" "[page type]" page'. More... | |
resolve_core_page_url (string $name) | |
Convert core page names to URLs for steps like 'When I am on the "[page name]" page'. More... | |
resolve_page_helper (string $page) | |
Helper used by i_am_on_page() and i_am_on_page_logged_in_as(). More... | |
resolve_page_instance_helper (string $identifier, string $pagetype) | |
Helper used by i_am_on_page() and i_am_on_page_logged_in_as(). More... | |
select_from_administration_menu ($nodelist) | |
Finds a page edit cog and select an item from it. More... | |
select_node_in_navigation ($nodetext, $parentnodes) | |
Finds a node in the Navigation or Administration tree and clicks on it. More... | |
select_on_administration_page ($nodelist) | |
Finds and clicks a link on the admin page (site administration or course administration) More... | |
toggle_page_administration_menu ($menuxpath=null) | |
Toggles administration menu. More... | |
|
protected |
Locates the administration menu in the <header> element and returns its xpath.
bool | $mustexist | if specified throws an exception if menu is not found |
null|string |
|
protected |
Finds a node in the Navigation or Administration tree.
string | $nodetext | |
array | $parentnodes | |
string | $nodetype | node type (link or text) |
NodeElement|null |
ExpectationException | when one of the parent nodes is not found |
|
protected |
Locates the administration menu on the page (but not in the header) and returns its xpath.
bool | $mustexist | if specified throws an exception if menu is not found |
null|string |
Reimplemented in behat_theme_classic_behat_navigation.
behat_navigation::get_expand_navbar_step | ( | ) |
Step to open the navigation bar if it is needed.
The top log in and log out links are hidden when middle or small size windows (or devices) are used. This step returns a step definition clicking to expand the navbar if it is hidden.
@Given /^I expand navigation bar$/
|
protected |
Helper function to get sub-navigation node.
ExpectationException | if note not found. |
string | $nodetext | node to find. |
NodeElement | $parentnode | parent navigation node. |
NodeElement. |
|
protected |
Helper function to get a navigation nodes text element given its text from within the navigation block.
This function finds the node with the given text from within the navigation block. It checks to make sure the node is visible, and then returns it.
string | $text | |
bool | $branch | Set this true if you're only interested in the node if its a branch. |
null | bool | $collapsed | Set this to true or false if you want the node to either be collapsed or not. If its left as null then we don't worry about it. |
null | string | Exception | false | $exception | The exception to throw if the node is not found. |
Behat::Mink::Element::NodeElement |
|
protected |
Helper function to get top navigation node in tree.
ExpectationException | if note not found. |
string | $nodetext | name of top navigation node in tree. |
NodeElement |
Reimplemented in behat_theme_classic_behat_navigation.
|
inherited |
Returns the Mink session.
string | null | $name | name of the session OR active session will be used |
Behat::Mink::Session |
Implemented in behat_form_field.
behat_navigation::i_am_on_course_homepage | ( | $coursefullname | ) |
Opens the course homepage.
(Consider using 'I am on the "shortname" "Course" page' step instead.)
@Given /^I am on "(?P<coursefullname_string>(?:[^"]|::")*)" course homepage$/
coding_exception |
string | $coursefullname | The full name of the course. |
void |
behat_navigation::i_am_on_course_homepage_with_editing_mode_on | ( | $coursefullname | ) |
Open the course homepage with editing mode enabled.
@Given /^I am on "(?P<coursefullname_string>(?:[^"]|::")*)" course homepage with editing mode on$/
coding_exception |
string | $coursefullname | The course full name of the course. |
void |
behat_navigation::i_am_on_fixture_page | ( | $url | ) |
Visit a fixture page for testing stuff that is not available in core.
Please always, to prevent unwanted requests, protect behat fixture files with: defined('BEHAT_SITE_RUNNING') || die();
@Given /^I am on fixture page "(?P<url_string>(?:[^"]|::")*)"$/
string | $url | local path to fixture page |
behat_navigation::i_am_on_page | ( | string | $page | ) |
Open a given page, belonging to a plugin or core component.
The page-type are interpreted by each plugin to work out the corresponding URL. See the resolve_url method in each class like behat_mod_forum. That method should document which page types are recognised, and how the name identifies them.
For pages belonging to core, the 'core > ' bit is omitted.
@When /^I am on the (?<page>[^ "]*) page$/ @When /^I am on the "(?<page>[^"]*)" page$/
string | $page | the component and page name. E.g. 'Admin notifications' or 'core_user > Preferences'. |
Exception | if the specified page cannot be determined. |
behat_navigation::i_am_on_page_instance | ( | string | $identifier, |
string | $type | ||
) |
Open a given instance of a page, belonging to a plugin or core component.
The instance identifier and page-type are interpreted by each plugin to work out the corresponding URL. See the resolve_page_instance_url method in each class like behat_mod_forum. That method should document which page types are recognised, and how the name identifies them.
For pages belonging to core, the 'core > ' bit is omitted.
@When /^I am on the (?<identifier>[^ "]*) (?<type>[^ "]*) page$/ @When /^I am on the "(?<identifier>[^"]*)" "(?<type>[^"]*)" page$/ @When /^I am on the (?<identifier>[^ "]*) "(?<type>[^"]*)" page$/ @When /^I am on the "(?<identifier>[^"]*)" (?<type>[^ "]*) page$/
string | $identifier | identifies the particular page. E.g. 'Test quiz'. |
string | $type | the component and page type. E.g. 'mod_quiz > View'. |
Exception | if the specified page cannot be determined. |
behat_navigation::i_am_on_page_instance_logged_in_as | ( | string | $identifier, |
string | $type, | ||
string | $username | ||
) |
Open a given page logged in as a given user.
This is like the combination When I log in as "..." And I am on the "..." "..." page but with the advantage that you go straight to the desired page, without having to wait for the Dashboard to load.
@When /^I am on the (?<identifier>[^ "]*) (?<type>[^ "]*) page logged in as (?<username>[^ "]*)$/ @When /^I am on the "(?<identifier>[^"]*)" "(?<type>[^"]*)" page logged in as (?<username>[^ "]*)$/ @When /^I am on the (?<identifier>[^ "]*) "(?<type>[^"]*)" page logged in as (?<username>[^ "]*)$/ @When /^I am on the "(?<identifier>[^"]*)" (?<type>[^ "]*) page logged in as (?<username>[^ "]*)$/ @When /^I am on the (?<identifier>[^ "]*) (?<type>[^ "]*) page logged in as "(?<username>[^"]*)"$/ @When /^I am on the "(?<identifier>[^"]*)" "(?<type>[^"]*)" page logged in as "(?<username>[^"]*)"$/ @When /^I am on the (?<identifier>[^ "]*) "(?<type>[^"]*)" page logged in as "(?<username>[^"]*)"$/ @When /^I am on the "(?<identifier>[^"]*)" (?<type>[^ "]*) page logged in as "(?<username>[^"]*)"$/
string | $identifier | identifies the particular page. E.g. 'Test quiz'. |
string | $type | the component and page type. E.g. 'mod_quiz > View'. |
string | $username | the name of the user to log in as. E.g. 'student'. |
Exception | if the specified page cannot be determined. |
behat_navigation::i_am_on_page_logged_in_as | ( | string | $page, |
string | $username | ||
) |
Open a given page logged in as a given user.
This is like the combination When I log in as "..." And I am on the "..." page but with the advantage that you go straight to the desired page, without having to wait for the Dashboard to load.
@When /^I am on the (?<page>[^ "]*) page logged in as (?<username>[^ "]*)$/ @When /^I am on the "(?<page>[^"]*)" page logged in as (?<username>[^ "]*)$/ @When /^I am on the (?<page>[^ "]*) page logged in as "(?<username>[^ "]*)"$/ @When /^I am on the "(?<page>[^"]*)" page logged in as "(?<username>[^ "]*)"$/
string | $page | the type of page. E.g. 'Admin notifications' or 'core_user > Preferences'. |
string | $username | the name of the user to log in as. E.g. 'admin'. |
Exception | if the specified page cannot be determined. |
behat_navigation::i_close_flat_navigation_drawer | ( | ) |
Closes the flat navigation drawer if it is open (does nothing if JS disabled)
@When /^I close flat navigation drawer$/
ElementNotFoundException | Thrown by behat_base::find |
behat_navigation::i_collapse_node | ( | $nodetext | ) |
Collapses the selected node of the navigation tree that matches the text.
@Given /^I collapse "(?P<nodetext_string>(?:[^"]|::")*)" node$/
ExpectationException |
string | $nodetext |
bool|void |
behat_navigation::i_expand_node | ( | $nodetext | ) |
Expands the selected node of the navigation tree that matches the text.
@Given /^I expand "(?P<nodetext_string>(?:[^"]|::")*)" node$/
ExpectationException |
string | $nodetext |
bool|void |
behat_navigation::i_follow_in_the_user_menu | ( | $nodetext | ) |
Click on an entry in the user menu.
@Given /^I follow "(?P<nodetext_string>(?:[^"]|::")*)" in the user menu$/
string | $nodetext |
behat_navigation::i_navigate_to_in_current_page_administration | ( | $nodetext | ) |
Go to current page setting item.
This can be used on front page, course, category or modules pages.
@Given /^I navigate to "(?P<nodetext_string>(?:[^"]|::")*)" in current page administration$/
ExpectationException |
string | $nodetext | navigation node to click, may contain path, for example "Reports > Overview" |
void |
Reimplemented in behat_theme_classic_behat_navigation.
behat_navigation::i_navigate_to_in_site_administration | ( | $nodetext | ) |
Go to site administration item.
@Given /^I navigate to "(?P<nodetext_string>(?:[^"]|::")*)" in site administration$/
ExpectationException |
string | $nodetext | navigation node to click, may contain path, for example "Reports > Overview" |
void |
Reimplemented in behat_theme_classic_behat_navigation.
behat_navigation::i_open_flat_navigation_drawer | ( | ) |
Opens the flat navigation drawer if it is not already open.
@When /^I open flat navigation drawer$/
ElementNotFoundException | Thrown by behat_base::find |
behat_navigation::i_open_my_profile_in_edit_mode | ( | ) |
Opens the current users profile page in edit mode.
@Given /^I open my profile in edit mode$/
coding_exception |
void |
behat_navigation::i_select_from_flat_navigation_drawer | ( | $link | ) |
Clicks link with specified id|title|alt|text in the flat navigation drawer.
@When /^I select "(?P<link_string>(?:[^"]|::")*)" from flat navigation drawer$/
ElementNotFoundException | Thrown by behat_base::find |
string | $link |
behat_navigation::navigation_node_should_be_expandable | ( | $nodetext | ) |
Returns true if the navigation node with the given text is expandable.
@Given /^navigation node "([^"]*)" should be expandable$/
ExpectationException |
string | $nodetext |
bool |
behat_navigation::navigation_node_should_not_be_expandable | ( | $nodetext | ) |
Returns true if the navigation node with the given text is not expandable.
@Given /^navigation node "([^"]*)" should not be expandable$/
ExpectationException |
string | $nodetext |
bool |
|
protected |
|
protected |
Convert page names to URLs for steps like 'When I am on the "[identifier]" "[page type]" page'.
Recognised page names are: | Page type | Identifier meaning | description | | Category | category idnumber | List of courses in that category. | | Course | course shortname | Main course home pag | | Activity | activity idnumber | Start page for that activity | | Activity editing | activity idnumber | Edit settings page for that activity | | [modname] Activity | activity name or idnumber | Start page for that activity | | [modname] Activity editing | activity name or idnumber | Edit settings page for that activity |
Examples:
When I am on the "Welcome to ECON101" "forum activity" page logged in as student1
string | $type | identifies which type of page this is, e.g. 'Category page'. |
string | $identifier | identifies the particular page, e.g. 'test-cat'. |
moodle_url | the corresponding URL. |
Exception | with a meaningful error message if the specified page cannot be found. |
|
protected |
Convert core page names to URLs for steps like 'When I am on the "[page name]" page'.
Recognised page names are: | Homepage | Homepage (normally dashboard). | | Admin notifications | Admin notification screen. |
string | $name | identifies which identifies this page, e.g. 'Homepage', 'Admin notifications'. |
moodle_url | the corresponding URL. |
Exception | with a meaningful error message if the specified page cannot be found. |
|
protected |
Helper used by i_am_on_page() and i_am_on_page_logged_in_as().
string | $page | the type of page. E.g. 'Admin notifications' or 'core_user > Preferences'. |
moodle_url | the corresponding URL. |
|
protected |
Helper used by i_am_on_page() and i_am_on_page_logged_in_as().
string | $identifier | identifies the particular page. E.g. 'Test quiz'. |
string | $pagetype | the component and page type. E.g. 'mod_quiz > View'. |
moodle_url | the corresponding URL. |
|
protected |
Finds a page edit cog and select an item from it.
If the page edit cog is in the page header and the item is not found there, click "More..." link and find the item on the course/frontpage administration page
array | $nodelist |
ElementNotFoundException |
|
protected |
Finds a node in the Navigation or Administration tree and clicks on it.
string | $nodetext | |
array | $parentnodes |
ExpectationException |
|
protected |
Finds and clicks a link on the admin page (site administration or course administration)
array | $nodelist |
behat_navigation::should_exist_in_current_page_administration | ( | $element, | |
$selectortype | |||
) |
Checks that current page administration contains text.
@Given /^"(?P<element_string>(?:[^"]|::")*)" "(?P<selector_string>[^"]*)" should exist in current page administration$/ @throws ExpectationException @param string $element The locator of the specified selector. This may be a path, for example "Subscription mode > Forced subscription"
string | $selectortype | The selector type (link or text) |
void |
Reimplemented in behat_theme_classic_behat_navigation.
behat_navigation::should_not_exist_in_current_page_administration | ( | $element, | |
$selectortype | |||
) |
Checks that current page administration contains text.
@Given /^"(?P<element_string>(?:[^"]|::")*)" "(?P<selector_string>[^"]*)" should not exist in current page administration$/ @throws ExpectationException @param string $element The locator of the specified selector. This may be a path, for example "Subscription mode > Forced subscription"
string | $selectortype | The selector type (link or text) |
void |
Reimplemented in behat_theme_classic_behat_navigation.
|
protected |
Toggles administration menu.
string | $menuxpath | (optional) xpath to the page administration menu if already known |
|
inherited |
And extended timeout for specific cases.
|
inherited |
The JS code to check that the page is ready.
The document must be complete and either M.util.pending_js must be empty, or it must not be defined at all.
|
inherited |
Small timeout.
A reduced timeout for cases where self::TIMEOUT is too much and a simple $this->getSession()->getPage()->find() could not be enough.
|
inherited |
The timeout for each Behat step (load page, wait for an element to load...).