Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
=== 4.5 Onwards ===
2
 
3
This file has been replaced by UPGRADING.md. See MDL-81125 for further information.
4
 
5
===
1 efrain 6
This file describes API changes in /question/type/multichoice/*.
7
 
8
=== 3.10 ===
9
* The label for the multiple choice answers are being removed and the inputs (radio buttons/checkboxes) are now being labelled
10
by the answer texts via the aria-labelledby attribute. Because of this, Behat steps that used to click on the labels for the
11
multiple choice answer such as
12
    And I click on "One" "checkbox"
13
won't work anymore. This has been replaced by having Behat click on the answer text using the custom partial named selector
14
"qtype_multichoice > Answer". So the above behat step would now be
15
    And I click on "One" "qtype_multichoice > Answer"
16
This applies to both single-answer and multiple-answer multiple choice question types.