itemengine-cypress-automation 1.0.575-IEI-7071-main-366a409.0 → 1.0.575-scoring-fix-50e88c8.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.
@@ -1,13 +1,10 @@
1
- import { shortTextResponsePage, itemPreviewPage, studentViewPage } from "../../../pages";
1
+ import { shortTextResponsePage } from "../../../pages";
2
2
  import abortEarlySetup from "../../../support/helpers/abortEarly";
3
3
  import utilities from "../../../support/helpers/utilities";
4
4
  const css = Cypress.env('css');
5
5
 
6
6
  const fontSizes = { 'Tiny': '12px', 'Small': '14px', 'Default': '16px', 'Normal': '18px', 'Big': '22px', 'Huge': '26px' };
7
7
  const clipboardFunctions = ['Cut', 'Copy', 'Paste'];
8
- let correctAnswerViews = ['Question preview', 'Item preview', 'Student view'];
9
- const views = utilities.getViews(correctAnswerViews);
10
- let itemReferenceID = "";
11
8
 
12
9
  describe('Create Item page - Short text response - drag and drop: Additional settings', () => {
13
10
  before(() => {
@@ -68,46 +65,6 @@ describe('Create Item page - Short text response - drag and drop: Additional set
68
65
  });
69
66
  });
70
67
 
71
- describe('Additional settings: Clipboard functions functionality in previewTab', () => {
72
- abortEarlySetup();
73
- before(() => {
74
- shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
75
- cy.barsPreLoaderWait();
76
- shortTextResponsePage.steps.expandAdditionalSettings();
77
- });
78
-
79
- it('When the user deselects cut option, then when trying to cut the response from the response field, it should not be cut and a warning message as \'Cut option is disabled\' should be displayed', () => {
80
- shortTextResponsePage.steps.unselectClipboardFunctionButton(0);
81
- shortTextResponsePage.steps.switchToPreviewTab();
82
- shortTextResponsePage.steps.enterTextInAnswerInputField('Apple');
83
- shortTextResponsePage.steps.cutTextFromAnswerResponseField();
84
- utilities.verifyInnerText(shortTextResponsePage.warningMessage(), 'Cut is disabled.');
85
- utilities.verifyElementVisibilityState(shortTextResponsePage.warningMessage(), 'visible');
86
- });
87
-
88
- it('When the user deselects copy option, then when trying to cut the response from the response field, it should not be cut and a warning message as \'Copy option is disabled\' should be displayed', () => {
89
- shortTextResponsePage.steps.switchToEditTab();
90
- shortTextResponsePage.steps.unselectClipboardFunctionButton(1);
91
- shortTextResponsePage.steps.selectClipboardFunctionButton(0);
92
- shortTextResponsePage.steps.switchToPreviewTab();
93
- shortTextResponsePage.steps.enterTextInAnswerInputField('Banana');
94
- shortTextResponsePage.steps.copyTextFromAnswerResponseField();
95
- utilities.verifyInnerText(shortTextResponsePage.warningMessage(), 'Copy is disabled.');
96
- utilities.verifyElementVisibilityState(shortTextResponsePage.warningMessage(), 'visible');
97
- });
98
-
99
- it('When the user deselects paste option, then when trying to paste the response from the response field, it should not be pasted and a warning message as \'Paste option is disabled\' should be displayed', () => {
100
- shortTextResponsePage.steps.switchToEditTab();
101
- shortTextResponsePage.steps.unselectClipboardFunctionButton(2);
102
- shortTextResponsePage.steps.selectClipboardFunctionButton(1);
103
- shortTextResponsePage.steps.switchToPreviewTab();
104
- shortTextResponsePage.steps.enterTextInAnswerInputField('Cherry');
105
- shortTextResponsePage.steps.pasteTextFromAnswerResponseField();
106
- utilities.verifyInnerText(shortTextResponsePage.warningMessage(), 'Paste is disabled.');
107
- utilities.verifyElementVisibilityState(shortTextResponsePage.warningMessage(), 'visible');
108
- });
109
- });
110
-
111
68
  describe('Additional settings: Placeholder text', () => {
112
69
  abortEarlySetup();
113
70
  before(() => {
@@ -279,7 +236,7 @@ describe('Create Item page - Short text response - drag and drop: Additional set
279
236
  });
280
237
  });
281
238
  });
282
-
239
+
283
240
  describe('Setting tab: Accessibility section', () => {
284
241
  abortEarlySetup();
285
242
  before(() => {
@@ -413,58 +370,4 @@ describe('Create Item page - Short text response - drag and drop: Additional set
413
370
 
414
371
  shortTextResponsePage.tests.verifyDetailsSection();
415
372
  });
416
-
417
- views.forEach((view) => {
418
- describe(`${view}: Additional Settings: Clipboard functions`, () => {
419
- abortEarlySetup();
420
- before(() => {
421
- switch (view) {
422
- case 'Question preview':
423
- shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
424
- cy.barsPreLoaderWait();
425
- shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Correct answer');
426
- shortTextResponsePage.steps.allotPoints(10);
427
- shortTextResponsePage.steps.expandAdditionalSettings();
428
- shortTextResponsePage.steps.deselectAllClipboardFunctionButton();
429
- shortTextResponsePage.steps.switchToPreviewTab();
430
- break;
431
- case 'Item preview':
432
- cy.visit(`/item-engine/demo/edit-item/${utilities.base64Encoding(itemReferenceID)}`);
433
- itemPreviewPage.steps.switchToPreviewTab();
434
- break;
435
- case 'Student view':
436
- cy.visit(`/item-engine/demo/render-item/student-view/${utilities.base64Encoding(itemReferenceID)}`);
437
- break;
438
- };
439
- });
440
-
441
- beforeEach(() => {
442
- switch (view) {
443
- case 'Question preview':
444
- break;
445
- case 'Item preview':
446
- shortTextResponsePage.steps.switchToGradingView();
447
- break;
448
- case 'Student view':
449
- cy.visit(`/item-engine/demo/render-item/student-view/${utilities.base64Encoding(itemReferenceID)}`);
450
- break;
451
- }
452
- });
453
-
454
- if (view === 'Question preview') {
455
- after(() => {
456
- shortTextResponsePage.steps.clickOnSaveQuestionButton();
457
- utilities.verifyElementVisibilityState(itemPreviewPage.referenceID(), 'visible');
458
- itemReferenceID = itemPreviewPage.steps.getItemReferenceID();
459
- });
460
- };
461
-
462
- it(`When the user deselects all the Clipboard functions option and tries to ${clipboardFunctions} then warning message \'Cut, copy and paste options are disabled.\' should be displayed in ${view}`, () => {
463
- shortTextResponsePage.steps.enterTextInAnswerInputField('Apple');
464
- shortTextResponsePage.steps.copyTextFromAnswerResponseField();
465
- utilities.verifyElementVisibilityState(shortTextResponsePage.warningMessageContainer(), 'visible');
466
- utilities.verifyInnerText(shortTextResponsePage.warningMessageContainer(), 'Cut, copy and paste options are disabled.');
467
- });
468
- });
469
- });
470
373
  });
@@ -0,0 +1,245 @@
1
+ import { shortTextResponsePage } from "../../../pages/shortTextResponsePage";
2
+ import abortEarlySetup from "../../../support/helpers/abortEarly";
3
+ const css = Cypress.env('css');
4
+
5
+ describe('Create item page - Single selection: All or nothing with alternative answer', () => {
6
+ before(() => {
7
+ cy.loginAs('admin');
8
+ });
9
+
10
+ describe('Question preview: Auto scored - All or nothing with alternative answer - When \'Correct answer\' points are more than \'Alternative answer\' points', () => {
11
+ abortEarlySetup();
12
+ before(() => {
13
+ shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
14
+ cy.barsPreLoaderWait();
15
+ shortTextResponsePage.steps.addTextInQuestionInstructionsInputField('Which of the following is the major contributor to increased carbon dioxide levels because of urbanization? Select your answer from the options below.');
16
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Buildings');
17
+ shortTextResponsePage.steps.allotPoints(20);
18
+ shortTextResponsePage.steps.clickOnAddAlternativeAnswerButton();
19
+ shortTextResponsePage.steps.allotPoints(10);
20
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Fossil fuel combustion');
21
+ //shortTextResponsePage.steps.checkAllowStudentToCheckAnswerCheckbox();
22
+ shortTextResponsePage.steps.switchToPreviewTab();
23
+ });
24
+
25
+ //TODO: need to fix it after https://redmine.zeuslearning.com/issues/561054 is resolved
26
+ it('When the user selects \'Grading\' view without attempting the question then incorrect answer border and correct answer section should be displayed and correct/incorrect icons should not be displayed', () => {
27
+ shortTextResponsePage.steps.switchToGradingView();
28
+ shortTextResponsePage.steps.verifyCorrectIncorrectIconNotVisibleGradingView();
29
+ // shortTextResponsePage.steps.verifyCorrectIncorrectBorderNotExist();
30
+ shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Buildings');
31
+ shortTextResponsePage.steps.switchToStudentView();
32
+ });
33
+
34
+ it('When the user attempts the question with response from the correct accordion, then the user should be awarded with points specified for correct accordion and on switching to \'Grading\' view, correct icon and correct answer border should be displayed and correct answer section should not be displayed', () => {
35
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Buildings');
36
+ shortTextResponsePage.steps.verifyPreviewScore(20, 20);
37
+ shortTextResponsePage.steps.verifyPreviewTabPointsBackgroundForCorrectAnswer();
38
+ shortTextResponsePage.steps.switchToGradingView();
39
+ shortTextResponsePage.steps.verifyCorrectIcon();
40
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
41
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
42
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
43
+ /*cy.log('When the user has attempted the question with response from the correct accordion and clicks on \'Check answer\' button, then correct icon and correct answer border should be displayed in the question preview')
44
+ shortTextResponsePage.steps.checkAnswer();
45
+ shortTextResponsePage.steps.verifyCorrectIcon();
46
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
47
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
48
+ });
49
+
50
+ shortTextResponsePage.tests.verifyPointsCorrectAnswerLabelAndBorderCSSAndA11y('short text response');
51
+
52
+ it('When the user attempts the question with response from the alternative accordion, then the user should be awarded with points specified for alternative accordion (less than overall points) and on switching to \'Grading\' view, correct icon should be displayed beside response input field and correct answer border be displayed and correct answer section should not be displayed', () => {
53
+ shortTextResponsePage.steps.resetQuestionPreview();
54
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Fossil fuel combustion');
55
+ shortTextResponsePage.steps.verifyPreviewScore(10, 20);
56
+ shortTextResponsePage.steps.verifyPreviewTabPointsBackgroundForIncorrectOrPartiallyCorrectAnswer();
57
+ shortTextResponsePage.steps.switchToGradingView();
58
+ shortTextResponsePage.steps.verifyCorrectIcon();
59
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
60
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
61
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
62
+ /*cy.log('When the user has attempted the question with response from the alternative accordion and clicks on \'Check answer\' button, then correct icon should only be displayed beside response input field and correct answer border should be displayed in question preview');
63
+ shortTextResponsePage.steps.checkAnswer();
64
+ shortTextResponsePage.steps.verifyCorrectIcon();
65
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
66
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
67
+ });
68
+
69
+ it('When the user attempts the question incorrectly, then the user should be awarded 0 points and on switching to \'Grading\' view, incorrect icon should be displayed beside response input field, incorrect answer border and correct answer section should be displayed in question preview', () => {
70
+ shortTextResponsePage.steps.resetQuestionPreview();
71
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Incorrect answer');
72
+ shortTextResponsePage.steps.verifyPreviewScore(0, 20);
73
+ shortTextResponsePage.steps.verifyPreviewTabPointsBackgroundForIncorrectOrPartiallyCorrectAnswer();
74
+ shortTextResponsePage.steps.switchToGradingView();
75
+ shortTextResponsePage.steps.verifyIncorrectIcon();
76
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();
77
+ shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Buildings');
78
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
79
+ /*cy.log('When the user has attempted the question incorrectly and clicks on \'Check answer\' button, then incorrect icon should be displayed beside response input field and incorrect answer border should not be displayed in question preview')
80
+ shortTextResponsePage.steps.checkAnswer();
81
+ shortTextResponsePage.steps.verifyIncorrectIcon();
82
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();
83
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
84
+ });
85
+
86
+ shortTextResponsePage.tests.verifyIncorrectAnswerLabelAndBorderCSSAndA11y('single selection');
87
+
88
+ it('When the user sets \'Award minimum score only if attempted\' in minimum scoring dropdown and allots minimum points such that minimum points are less than alternative answer points, then attempts the question with response from the alternative accordion, the user should be awarded with alternative answer points', () => {
89
+ shortTextResponsePage.steps.switchToEditTab();
90
+ shortTextResponsePage.steps.expandMinimumScoringDropdown();
91
+ shortTextResponsePage.steps.selectOptionFromMinimumScoringDropdown('Award minimum score only if attempted');
92
+ shortTextResponsePage.steps.allotMinimumPoints(3);
93
+ shortTextResponsePage.steps.switchToPreviewTab();
94
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Fossil fuel combustion');
95
+ shortTextResponsePage.steps.verifyPreviewScore(10, 20);
96
+ });
97
+
98
+ it('When the user sets minimum points such that minimum points are greater than alternative answer points, then attempts the question with response from the alternative accordion, the user should be awarded with minimum points', () => {
99
+ shortTextResponsePage.steps.switchToEditTab();
100
+ shortTextResponsePage.steps.allotMinimumPoints(13);
101
+ shortTextResponsePage.steps.switchToPreviewTab();
102
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Fossil fuel combustion');
103
+ shortTextResponsePage.steps.verifyPreviewScore(13, 20);
104
+ });
105
+ });
106
+
107
+ describe('Question preview: Auto scored - All or nothing with alternative answer - When \'Alternative answer\' points are more than \'Correct answer\' points', () => {
108
+ abortEarlySetup();
109
+ before(() => {
110
+ shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
111
+ cy.barsPreLoaderWait();
112
+ shortTextResponsePage.steps.addTextInQuestionInstructionsInputField('Which of the following is the major contributor to increased carbon dioxide levels because of urbanization? Select your answer from the options below.');
113
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Buildings');
114
+ shortTextResponsePage.steps.allotPoints(10);
115
+ shortTextResponsePage.steps.clickOnAddAlternativeAnswerButton();
116
+ shortTextResponsePage.steps.allotPoints(20);
117
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Fossil fuel combustion');
118
+ //shortTextResponsePage.steps.checkAllowStudentToCheckAnswerCheckbox();
119
+ shortTextResponsePage.steps.switchToPreviewTab();
120
+ });
121
+
122
+ //TODO: need to fix it after https://redmine.zeuslearning.com/issues/561054 is resolved
123
+ it('When the user selects \'Grading\' view without attempting the question, correct/incorrect icons should not be displayed and answer input field should have incorrect answer border and correct answer section should be displayed below response input field', () => {
124
+ shortTextResponsePage.steps.switchToGradingView();
125
+ //shortTextResponsePage.steps.verifyCorrectIncorrectBorderNotExist();
126
+ shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Fossil fuel combustion');
127
+ shortTextResponsePage.steps.switchToStudentView();
128
+ });
129
+
130
+ it('When the user attempts the question with response from the correct accordion, then the user should be awarded with points specified for correct accordion (less than overall points) and on switching to \'Grading\' view, correct icon should be displayed beside response input field, correct answer border should be displayed and correct answer section should not be displayed', () => {
131
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Buildings');
132
+ shortTextResponsePage.steps.verifyPreviewScore(10, 20);
133
+ shortTextResponsePage.steps.switchToGradingView();
134
+ shortTextResponsePage.steps.verifyCorrectIcon();
135
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
136
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
137
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
138
+ /*cy.log('When the user has attempted the question with response from the correct accordion and clicks on \'Check answer\' button, then correct icon should be displayed beside correct response input field, correct answer border should be displayed in question preview')
139
+ shortTextResponsePage.steps.checkAnswer();
140
+ shortTextResponsePage.steps.verifyCorrectIcon();
141
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
142
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
143
+ });
144
+
145
+ it('When the user attempts the question with response from the alternative accordion, then the user should be awarded with points specified for alternative accordion and on switching to \'Grading\' view, correct icon should be displayed beside response input field, correct answer border should be displayed and correct answer section should not be displayed', () => {
146
+ shortTextResponsePage.steps.resetQuestionPreview();
147
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Fossil fuel combustion');
148
+ shortTextResponsePage.steps.verifyPreviewScore(20, 20);
149
+ shortTextResponsePage.steps.switchToGradingView();
150
+ shortTextResponsePage.steps.verifyCorrectIcon();
151
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
152
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
153
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
154
+ /*cy.log('When the user has attempted the question with response input field from the alternative accordion and clicks on \'Check answer\' button, then correct icon should beside response input field and correct answer border should be displayed in the question preview')
155
+ shortTextResponsePage.steps.checkAnswer();
156
+ shortTextResponsePage.steps.verifyCorrectIcon();
157
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
158
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();*/
159
+ });
160
+
161
+ it('When the user attempts the question incorrectly, then the user should be awarded 0 points and on switching to \'Grading\' view, incorrect icon should be displayed beside response input field, incorrect answer border and correct answer section should be displayed', () => {
162
+ shortTextResponsePage.steps.resetQuestionPreview();
163
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Fossil');
164
+ shortTextResponsePage.steps.verifyPreviewScore(0, 20);
165
+ shortTextResponsePage.steps.switchToGradingView();
166
+ shortTextResponsePage.steps.verifyIncorrectIcon();
167
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();
168
+ shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Fossil fuel combustion');
169
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
170
+ /*cy.log('When the user has attempted the question incorrectly and clicks on \'Check answer\' button, then incorrect icon should be displayed beside response input field and incorrect answer border should be displayed question preview')
171
+ shortTextResponsePage.steps.checkAnswer();
172
+ shortTextResponsePage.steps.verifyIncorrectIcon();
173
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();*/
174
+ });
175
+ });
176
+
177
+ describe('Question preview: Auto scored - All or nothing with alternative answer - When \'Correct answer\' points is equal to \'Alternative answer\' points', () => {
178
+ abortEarlySetup();
179
+ before(() => {
180
+ shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
181
+ cy.barsPreLoaderWait();
182
+ shortTextResponsePage.steps.addTextInQuestionInstructionsInputField('Which of the following is the major contributor to increased carbon dioxide levels because of urbanization? Select your answer from the options below.');
183
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Buildings');
184
+ shortTextResponsePage.steps.allotPoints(20);
185
+ shortTextResponsePage.steps.clickOnAddAlternativeAnswerButton();
186
+ shortTextResponsePage.steps.allotPoints(20);
187
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Fossil fuel combustion');
188
+ //shortTextResponsePage.steps.checkAllowStudentToCheckAnswerCheckbox();
189
+ shortTextResponsePage.steps.switchToPreviewTab();
190
+ });
191
+
192
+ //TODO: need to fix it after https://redmine.zeuslearning.com/issues/561054 is resolved
193
+ it('When the user switches to \'Grading\' view without attempting the question, then incorrect border and correct answer section should be displayed', () => {
194
+ shortTextResponsePage.steps.switchToGradingView();
195
+ //shortTextResponsePage.steps.verifyCorrectIncorrectBorderNotExist();
196
+ shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Buildings');
197
+ shortTextResponsePage.steps.switchToStudentView();
198
+ });
199
+
200
+ it('When the user attempts the question with response from the correct accordion, then the user should be awarded with points specified for correct accordion and on switching to \'Grading\' view, correct icon should be displayed beside response input field, correct answer border should be displayed and correct answer section should not be displayed', () => {
201
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Buildings');
202
+ shortTextResponsePage.steps.verifyPreviewScore(20, 20);
203
+ shortTextResponsePage.steps.switchToGradingView();
204
+ shortTextResponsePage.steps.verifyCorrectIcon();
205
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
206
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
207
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
208
+ /*cy.log('When the user has attempted the question with response input field from the correct accordion and clicks on \'Check answer\' button, then correct icon should be displayed beside response input field and correct answer border should be displayed in question preview')
209
+ shortTextResponsePage.steps.checkAnswer();
210
+ shortTextResponsePage.steps.verifyCorrectIcon();
211
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();*/
212
+ });
213
+
214
+ it('When the user attempts the question with response from the alternative accordion, then the user should be awarded with points specified for alternative accordion (same as correct answer points) and on switching to \'Grading\' view, correct icon should only be displayed beside response input field, correct answer border and correct answer section should not be displayed in question preview', () => {
215
+ shortTextResponsePage.steps.resetQuestionPreview();
216
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Fossil fuel combustion');
217
+ shortTextResponsePage.steps.verifyPreviewScore(20, 20);
218
+ shortTextResponsePage.steps.switchToGradingView();
219
+ shortTextResponsePage.steps.verifyCorrectIcon();
220
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
221
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
222
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
223
+ /*cy.log('When the user has attempted the question with response input field from the alternative accordion and clicks on \'Check answer\' button, then correct icon should only be displayed beside response input field and correct answer border should be displayed in question preview')
224
+ shortTextResponsePage.steps.checkAnswer();
225
+ shortTextResponsePage.steps.verifyCorrectIcon();
226
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
227
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
228
+ });
229
+
230
+ it('When the user attempts the question incorrectly, then the user should be awarded 0 points and on switching to \'Grading\' view, incorrect icon should be displayed beside response input field, incorrect answer border and correct answer section should be displayed in question preview', () => {
231
+ shortTextResponsePage.steps.resetQuestionPreview();
232
+ shortTextResponsePage.steps.enterTextInAnswerInputFieldPreviewTab('Incorrect');
233
+ shortTextResponsePage.steps.verifyPreviewScore(0, 20);
234
+ shortTextResponsePage.steps.switchToGradingView();
235
+ shortTextResponsePage.steps.verifyIncorrectIcon();
236
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();
237
+ shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Buildings');
238
+ shortTextResponsePage.steps.verifyQuestionPreviewStateWhenSwitchingBackToStudentView();
239
+ /*cy.log('When the user has attempted the question incorrectly and clicks on \'Check answer\' button, then incorrect icon should only be displayed beside incorrect response input field, correct icon should not be displayed beside unattempted correct options, incorrect answer border and a label should not be displayed in question preview')
240
+ shortTextResponsePage.steps.checkAnswer();
241
+ shortTextResponsePage.steps.verifyIncorrectIcon();
242
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();*/
243
+ });
244
+ });
245
+ });
@@ -1,8 +1,7 @@
1
1
  import abortEarlySetup from "../../../support/helpers/abortEarly";
2
- import { shortTextResponsePage, itemPreviewPage } from "../../../pages";
2
+ import { shortTextResponsePage } from "../../../pages";
3
3
  import utilities from "../../../support/helpers/utilities";
4
4
  const css = Cypress.env('css');
5
- let itemReferenceID = '';
6
5
 
7
6
  describe('Create question page - Short text response: Question Instructions, Set limit', () => {
8
7
  before(() => {
@@ -584,57 +583,4 @@ describe('Create question page - Short text response: Question Instructions, Set
584
583
  shortTextResponsePage.steps.focusInAnswerInputFieldPreviewTab();
585
584
  });
586
585
  });
587
-
588
- describe('Print layout settings accordion', () => {
589
- abortEarlySetup();
590
- before(() => {
591
- shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
592
- cy.barsPreLoaderWait();
593
- });
594
-
595
- shortTextResponsePage.tests.verifyPrintLayoutSettingsAccordionProperties();
596
- shortTextResponsePage.tests.verifyPrintLayoutSettingsAccordionContents();
597
- shortTextResponsePage.tests.verifyPrintLayoutSettingsAccordionAdditionalContent();
598
- });
599
-
600
- describe('Print layout settings: Default state', () => {
601
- abortEarlySetup();
602
- before(() => {
603
- shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
604
- cy.barsPreLoaderWait();
605
- shortTextResponsePage.steps.expandPrintLayoutSettings();
606
- shortTextResponsePage.steps.addTextInQuestionInstructionsInputField('short text response instructions.');
607
- });
608
-
609
- it('When the user navigates to the print view, then instructions and number of lines with 32px height should be displayed correctly', () => {
610
- shortTextResponsePage.steps.clickOnSaveQuestionButton();
611
- shortTextResponsePage.steps.clickOnConfirmButton();
612
- utilities.verifyElementVisibilityState(itemPreviewPage.referenceID(), 'visible');
613
- cy.wrap(itemPreviewPage.steps.getItemReferenceID()).then((referenceId) => {
614
- itemReferenceID = referenceId;
615
- cy.visit(`/item-engine/demo/render-item/print-view/${utilities.base64Encoding(itemReferenceID)}`);
616
- utilities.verifyInnerText(shortTextResponsePage.questionInstructionsPrintPreviewText(), 'short text response instructions.');
617
- shortTextResponsePage.steps.verifyNumberOfLinesInPrintView(1, '32px');
618
- });
619
- });
620
-
621
- it('When the modified number of lines and line spacing are applied, then instructions and number of lines with modified line spacing should be displayed correctly', () => {
622
- cy.visit(`/item-engine/demo/edit-item/${utilities.base64Encoding(itemReferenceID)}`);
623
- shortTextResponsePage.steps.clickOnEditQuestionButton();
624
- shortTextResponsePage.steps.expandPrintLayoutSettings();
625
- shortTextResponsePage.steps.addTextInQuestionInstructionsInputFieldForPrint('short text response modify instructions.');
626
- shortTextResponsePage.steps.addValueInNumberOfLinesInputField('5');
627
- shortTextResponsePage.steps.expandLineSpacingDropdown();
628
- shortTextResponsePage.steps.selectLineSpacingDropdownOption('Double');
629
- shortTextResponsePage.steps.clickOnSaveQuestionButton();
630
- shortTextResponsePage.steps.clickOnConfirmButton();
631
- utilities.verifyElementVisibilityState(itemPreviewPage.referenceID(), 'visible');
632
- cy.wrap(itemPreviewPage.steps.getItemReferenceID()).then((referenceId) => {
633
- itemReferenceID = referenceId;
634
- cy.visit(`/item-engine/demo/render-item/print-view/${utilities.base64Encoding(itemReferenceID)}`);
635
- utilities.verifyInnerText(shortTextResponsePage.questionInstructionsPrintPreviewText(), 'short text response modify instructions.');
636
- shortTextResponsePage.steps.verifyNumberOfLinesInPrintView(5, '48px');
637
- });
638
- });
639
- });
640
586
  });
@@ -1,6 +1,6 @@
1
- import { shortTextResponsePage } from "../../../../pages";
2
- import abortEarlySetup from "../../../../support/helpers/abortEarly";
3
- import utilities from "../../../../support/helpers/utilities";
1
+ import { shortTextResponsePage } from "../../../pages";
2
+ import abortEarlySetup from "../../../support/helpers/abortEarly";
3
+ import utilities from "../../../support/helpers/utilities";
4
4
  const css = Cypress.env('css');
5
5
 
6
6
  describe('Create Item page - Short text response: Scoring Section - Manually scored and Non scored', () => {
@@ -13,7 +13,7 @@ describe('Create Item page - Short text response: Scoring Section - Manually sco
13
13
  before(() => {
14
14
  cy.log('Adding question instructions and correct answer response, select Manually scored scoring type and add points for the question');
15
15
  shortTextResponsePage.steps.navigateToCreateQuestion('short text response');
16
- shortTextResponsePage.steps.addTextInQuestionInstructionsInputField('short text response instruction');
16
+ shortTextResponsePage.steps.addQuestionInstructions();
17
17
  shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Buildings');
18
18
  shortTextResponsePage.steps.allotPoints(20);
19
19
  shortTextResponsePage.steps.expandScoringTypeDropdown();
@@ -22,8 +22,9 @@ describe('Create Item page - Short text response: Scoring Section - Manually sco
22
22
  shortTextResponsePage.steps.switchToPreviewTab();
23
23
  });
24
24
 
25
- it('In Preview tab, Question Instructions and response field should be displayed', () => {
26
- shortTextResponsePage.steps.verifyQuestionInstructionsTextPreviewTab('short text response instruction');
25
+ //need to remove skip after https://redmine.zeuslearning.com/issues/571485 is resolved
26
+ it.skip('In Preview tab, Question Instructions and response field should be displayed', () => {
27
+ shortTextResponsePage.steps.verifyQuestionInstructionsText();
27
28
  utilities.verifyElementVisibilityState(shortTextResponsePage.previewTabResponseField(), 'visible');
28
29
  });
29
30
 
@@ -42,6 +43,7 @@ describe('Create Item page - Short text response: Scoring Section - Manually sco
42
43
  shortTextResponsePage.steps.enterTextInAnswerInputFieldSpecifyCorrectAnswerSection('Buildings');
43
44
  shortTextResponsePage.steps.expandScoringTypeDropdown();
44
45
  shortTextResponsePage.steps.selectOptionFromScoringTypeDropdown('Non scored');
46
+ //shortTextResponsePage.steps.checkAllowStudentToCheckAnswerCheckbox();
45
47
  shortTextResponsePage.steps.switchToPreviewTab();
46
48
  });
47
49
 
@@ -61,6 +63,11 @@ describe('Create Item page - Short text response: Scoring Section - Manually sco
61
63
  shortTextResponsePage.steps.verifyIncorrectAttemptBorder();
62
64
  shortTextResponsePage.steps.verifyCorrectAnswerResponseInCorrectAnswerWrapper('Buildings');
63
65
  shortTextResponsePage.steps.switchToStudentView();
66
+ /*cy.log('When the user clicks on \'Check answer\' button, red cross mark icon should be displayed besides the response field, Incorrect answer label and border should not be displayed and no correct answer wrapper should be displayed');
67
+ shortTextResponsePage.steps.checkAnswer();
68
+ shortTextResponsePage.steps.verifyIncorrectIcon();
69
+ shortTextResponsePage.steps.verifyIncorrectAttemptBorder();
70
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
64
71
  });
65
72
 
66
73
  it('When user attempts the question correctly, then on switching to \'Grading\' view, then correct icons should be displayed beside correct response and correct answer border should be displayed and correct answer wrapper should not be displayed in the question preview', () => {
@@ -71,6 +78,11 @@ describe('Create Item page - Short text response: Scoring Section - Manually sco
71
78
  shortTextResponsePage.steps.verifyCorrectAttemptBorder();
72
79
  shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();
73
80
  shortTextResponsePage.steps.switchToStudentView();
81
+ /*cy.log('When the user clicks on \'Check answer\' button, then green checkmark icon should be displayed besides response fields, Correct answer label and border should not be displayed and no correct answer container should be displayed and no correct answer container should be displayed')
82
+ shortTextResponsePage.steps.checkAnswer();
83
+ shortTextResponsePage.steps.verifyCorrectIcon();
84
+ shortTextResponsePage.steps.verifyCorrectAttemptBorder();
85
+ shortTextResponsePage.steps.verifyCorrectAnswerWrapperNotExist();*/
74
86
  });
75
87
 
76
88
  it('User should able to save question with non scored scoring type', () => {