-
Bug
-
Resolution: Fixed
-
Minor
-
2.9.1
-
MOODLE_29_STABLE
-
MOODLE_28_STABLE, MOODLE_29_STABLE
-
MDL-51100-master -
-
Team Beards Sprint 10
Discovered while looking at MDL-51088, the step for 'I follow "x" in the user menu' requires JS unnecessarily.
The user menu is displayed regardless of whether JS is available, but with JS the menu is collapsed and must first be opened.
The step actually consists of:
$steps[] = new When('I click on "'.$xpath.'" "xpath_element"');
|
$steps[] = new When('I click on "'.$nodetext.'" "link" in the "'.$csspath.'" "css_element"');
|
When JS is enabled, we need both, but when it is not, we only need the second step.
We also need to identify all locations which use this step and remove the javascript tag if they do not require it any longer.
- blocks
-
MDL-51106 Non-JS test is being tested with JavaScript
-
- Closed
-