itemengine-cypress-automation 1.0.277-revert-134-updatedRepo12thDec-108a6c6.0 → 1.0.278-revert-134-updatedRepo12thDec-5aacd81.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -120,7 +120,8 @@ describe('Create item page - Graphing: Grading view, Correct answer view content
|
|
120
120
|
});
|
121
121
|
});
|
122
122
|
|
123
|
-
|
123
|
+
//Failing due to https://weldnorthed.atlassian.net/browse/IEI-4805
|
124
|
+
it.skip('Accessibility of grading view', { tags: 'a11y' }, () => {
|
124
125
|
cy.checkAccessibility(graphingPage.graphPreviewTab());
|
125
126
|
});
|
126
127
|
});
|
@@ -193,7 +194,8 @@ describe('Create item page - Graphing: Grading view, Correct answer view content
|
|
193
194
|
});
|
194
195
|
});
|
195
196
|
|
196
|
-
|
197
|
+
//Failing due to https://weldnorthed.atlassian.net/browse/IEI-4805
|
198
|
+
it.skip('Accessibility of correct answer section', { tags: 'a11y' }, () => {
|
197
199
|
cy.checkAccessibility(graphingPage.graphPreviewTab());
|
198
200
|
});
|
199
201
|
});
|
@@ -90,6 +90,10 @@ describe('Create item page: Number line - Preview contents in all views', () =>
|
|
90
90
|
});
|
91
91
|
});
|
92
92
|
|
93
|
+
it('Accessibility of preview content', { tags: 'a11y' }, () => {
|
94
|
+
cy.checkAccessibility(numberLinePage.numberLinePreviewTab().parents('[class*="question-preview-wrapper"]'));
|
95
|
+
});
|
96
|
+
|
93
97
|
it('User should be able to plot point using the \'Point\' tool options', () => {
|
94
98
|
numberLinePage.steps.plotPointOnNumberLinePreviewTab("horizontal", range, 0);
|
95
99
|
numberLinePage.steps.verifyPointsPlottedOnNumberLinePreviewTab(range, [0]);
|
@@ -167,10 +171,6 @@ describe('Create item page: Number line - Preview contents in all views', () =>
|
|
167
171
|
});
|
168
172
|
});
|
169
173
|
|
170
|
-
it('Accessibility of preview content', { tags: 'a11y' }, () => {
|
171
|
-
cy.checkAccessibility(numberLinePage.numberLinePreviewTab().parents('[class*="question-preview-wrapper"]'));
|
172
|
-
});
|
173
|
-
|
174
174
|
it('When the user clicks on the \'Redo\' control option then the latest action should be displayed again and the button should be disabled again', () => {
|
175
175
|
numberLinePage.steps.selectNumberLineControlOptionPreviewTab('Redo');
|
176
176
|
numberLinePage.steps.verifyRayOnNumberLinePreviewTab('right', range, 7);
|
package/cypress/e2e/ILC/NumberLine/verticalNumberLine/previewTabContentsForAllViews.smoke.js
CHANGED
@@ -91,6 +91,10 @@ describe('Create item page: Number line - Preview contents in all views', () =>
|
|
91
91
|
});
|
92
92
|
});
|
93
93
|
|
94
|
+
it('Accessibility of preview content', { tags: 'a11y' }, () => {
|
95
|
+
cy.checkAccessibility(numberLinePage.numberLinePreviewTab().parents('[class*="question-preview-wrapper"]'));
|
96
|
+
});
|
97
|
+
|
94
98
|
it('User should be able to plot point using the \'Point\' tool options', () => {
|
95
99
|
numberLinePage.steps.plotPointOnNumberLinePreviewTab("vertical", range, 0);
|
96
100
|
numberLinePage.steps.verifyPointsPlottedOnVerticalNumberLinePreviewTab(range, [0]);
|
@@ -168,10 +172,6 @@ describe('Create item page: Number line - Preview contents in all views', () =>
|
|
168
172
|
});
|
169
173
|
});
|
170
174
|
|
171
|
-
it('Accessibility of preview content', { tags: 'a11y' }, () => {
|
172
|
-
cy.checkAccessibility(numberLinePage.numberLinePreviewTab().parents('[class*="question-preview-wrapper"]'));
|
173
|
-
});
|
174
|
-
|
175
175
|
it('When the user clicks on the \'Redo\' control option then the latest action should be displayed again and the button should be disabled again', () => {
|
176
176
|
numberLinePage.steps.selectNumberLineControlOptionPreviewTab('Redo');
|
177
177
|
numberLinePage.steps.verifyRayOnVerticalNumberLinePreviewTab('up', range, 8);
|