itemengine-cypress-automation 1.0.328-UpdateRepo28thFeb-24a9148.0 → 1.0.329-bumpVersion-7554e3b.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,7 +98,8 @@ describe('Create item page - Fill in the gaps with text: Question instructions,
|
|
98
98
|
};
|
99
99
|
});
|
100
100
|
|
101
|
-
it('When the user removes all response areas from the question input field, an error message \'Error: Minimum one response token is required.\' should be displayed', () => {
|
101
|
+
it('When the user removes all response areas from the question input field, an error message \'Error: Minimum one response token is required.\' should be displayed', () => {
|
102
|
+
cy.log('Switching to edit tab')
|
102
103
|
fillInTheGapsTextPage.steps.switchToEditTab();
|
103
104
|
fillInTheGapsTextPage.steps.deleteAResponseArea(0);
|
104
105
|
fillInTheGapsTextPage.steps.deleteAResponseArea(0);
|
@@ -34,7 +34,9 @@ describe('Edit item - List ordering', () => {
|
|
34
34
|
|
35
35
|
it('User should be able to edit options and save the question', () => {
|
36
36
|
listOrderingPage.steps.editItem();
|
37
|
-
|
37
|
+
for (let i = 0; i < options1.length; i++) {
|
38
|
+
listOrderingPage.steps.editOptionInputField(i, options1[i]);
|
39
|
+
}
|
38
40
|
listOrderingPage.steps.saveAQuestionAndVerifySnackbar();
|
39
41
|
listOrderingPage.steps.verifyOptionFieldContentsInOptionsSectionQuestionPreviewTab(options1);
|
40
42
|
});
|