itemengine-cypress-automation 1.0.133-7thMarchFixes-0e78080.0 → 1.0.134-14MarchUpdates-0b00629.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cypress/e2e/ILC/DesmosGraphing/previewTabContent.smoke.js +1 -2
- package/cypress/e2e/ILC/DrawingResponse/drawingResponsePreviewTabContents.smoke.js +53 -54
- package/cypress/e2e/ILC/FillInTheGapsOverImageTextNew/Scoring/partialDifferentWeightsBasic.js +0 -149
- package/cypress/e2e/ILC/FillInTheGapsOverImageTextNew/Scoring/partialDifferentWeightsMinimumAndPenaltyScoring.js +312 -0
- package/cypress/e2e/ILC/FillInTheGapsOverImageTextNew/additionalSettingsBasic.js +71 -0
- package/cypress/e2e/ILC/FillInTheGapsOverImageTextNew/minimumScoringPenaltyPointsAndRoundingDropdown.js +194 -0
- package/cypress/e2e/ILC/GeogebraActivity/additionalSettings.js +98 -0
- package/cypress/e2e/ILC/GeogebraActivity/editTabScoringSection.js +56 -0
- package/cypress/e2e/ILC/GeogebraActivity/gradingViewAndCorrectAnswerViewContents.smoke.js +106 -0
- package/cypress/e2e/ILC/GeogebraActivity/headerSection.js +74 -0
- package/cypress/e2e/ILC/GeogebraActivity/previewTabContent.smoke.js +91 -0
- package/cypress/e2e/ILC/GeogebraActivity/questionInstructions.js +28 -0
- package/cypress/e2e/ILC/Graphing/Scoring/allOrNothingPenaltyScoring.js +79 -0
- package/cypress/e2e/ILC/Graphing/Scoring/manuallyAndNonScoredScoring.js +253 -0
- package/cypress/e2e/ILC/Graphing/addBackgroundShapesSection.js +307 -0
- package/cypress/e2e/ILC/Graphing/additionalSettingsBasic.js +84 -0
- package/cypress/e2e/ILC/Graphing/editTabScoringSection.js +105 -0
- package/cypress/e2e/ILC/Graphing/headerSection.js +77 -0
- package/cypress/e2e/ILC/Graphing/layoutAndGridOptions.js +916 -0
- package/cypress/e2e/ILC/Graphing/minimumScoringPenaltyPointsAndRoundingDropdown.js +57 -0
- package/cypress/e2e/ILC/Graphing/previewContentsForAllViews.smoke.js +1 -1
- package/cypress/e2e/ILC/Graphing/specifyCorrectAnswerSection.js +72 -0
- package/cypress/e2e/ILC/Graphing/studentViewSettings.js +120 -0
- package/cypress/e2e/ILC/Graphing/toolsControlsAndBackgroundSection.js +858 -0
- package/cypress/e2e/ILC/ShortTextResponseNew/additionalSettings.js +337 -4
- package/cypress/fixtures/constants.js +1 -1
- package/cypress/fixtures/theme/ilc.json +3 -1
- package/cypress/pages/components/additionalSettingsAccessibilitySectionComponent.js +66 -0
- package/cypress/pages/components/additionalSettingsPanel.js +95 -90
- package/cypress/pages/components/autoScoredSpecifyCorrectAnswerSection.js +9 -7
- package/cypress/pages/components/backgroundImageUploadComponent.js +16 -14
- package/cypress/pages/components/colorPopupComponent.js +14 -17
- package/cypress/pages/components/commonComponents.js +1 -1
- package/cypress/pages/components/fillInTheGapsDropdownCommonComponent.js +1 -1
- package/cypress/pages/components/imageCanvasComponent.js +3 -3
- package/cypress/pages/components/index.js +2 -2
- package/cypress/pages/components/opacityComponent.js +1 -1
- package/cypress/pages/components/scoringSectionBaseEditTab.js +18 -0
- package/cypress/pages/components/studentResponseAreaAndLayoutComponent.js +1 -1
- package/cypress/pages/dialogBoxBase.js +1 -1
- package/cypress/pages/drawingResponsePage.js +35 -4
- package/cypress/pages/fillInTheGapsOverImageDropdownPage.js +2 -2
- package/cypress/pages/fillInTheGapsOverImageTextPage.js +2 -0
- package/cypress/pages/geogebraActivityPage.js +106 -0
- package/cypress/pages/graphingPage.js +1458 -77
- package/cypress/pages/index.js +1 -0
- package/cypress/pages/multipleSelectionPage.js +0 -1
- package/cypress/pages/shortTextResponsePage.js +155 -3
- package/cypress/pages/uploadResponsePage.js +0 -2
- package/package.json +1 -1
@@ -0,0 +1,57 @@
|
|
1
|
+
import { graphingPage } from "../../../pages";
|
2
|
+
import abortEarlySetup from "../../../support/helpers/abortEarly";
|
3
|
+
import utilities from "../../../support/helpers/utilities";
|
4
|
+
const css = Cypress.env('css');
|
5
|
+
const penaltyScoringTypeArray = ['No penalty points', 'Penalty points for the entire question'];
|
6
|
+
|
7
|
+
describe('Create item page - Graphing: Minimum scoring, Penalty scoring, Rounding - Edit tab', () => {
|
8
|
+
before(() => {
|
9
|
+
cy.loginAs('admin');
|
10
|
+
});
|
11
|
+
|
12
|
+
describe('Scoring section: Minimum scoring - Edit tab', () => {
|
13
|
+
abortEarlySetup();
|
14
|
+
before(() => {
|
15
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
16
|
+
cy.barsPreLoaderWait();
|
17
|
+
graphingPage.steps.allotPoints(10);
|
18
|
+
});
|
19
|
+
|
20
|
+
graphingPage.tests.verifyMinimumScoringDropdown();
|
21
|
+
|
22
|
+
graphingPage.tests.verifyMinimumPointsLabelAndInputField();
|
23
|
+
|
24
|
+
graphingPage.tests.verifyMinimumPointsFieldErrorState();
|
25
|
+
});
|
26
|
+
|
27
|
+
describe('Scoring section: Penalty scoring - Edit tab', () => {
|
28
|
+
abortEarlySetup();
|
29
|
+
before(() => {
|
30
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
31
|
+
cy.barsPreLoaderWait();
|
32
|
+
graphingPage.steps.allotPoints(10);
|
33
|
+
});
|
34
|
+
|
35
|
+
graphingPage.tests.verifyPenaltyScoringDropdown(penaltyScoringTypeArray);
|
36
|
+
|
37
|
+
graphingPage.tests.verifyPenaltyPointsLabelAndInputField();
|
38
|
+
|
39
|
+
graphingPage.tests.verifyPenaltyPointsErrorState();
|
40
|
+
});
|
41
|
+
|
42
|
+
describe('Scoring section: Rounding - Edit tab', () => {
|
43
|
+
abortEarlySetup();
|
44
|
+
before(() => {
|
45
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
46
|
+
cy.barsPreLoaderWait();
|
47
|
+
graphingPage.steps.allotPoints(10);
|
48
|
+
});
|
49
|
+
|
50
|
+
it('\'Rounding\' label and dropdown should not be displayed', () => {
|
51
|
+
utilities.verifyElementVisibilityState(graphingPage.roundingLabel(), 'notExist');
|
52
|
+
utilities.verifyElementVisibilityState(graphingPage.roundingDropdown(), 'notExist');
|
53
|
+
});
|
54
|
+
|
55
|
+
graphingPage.tests.verifyRoundNegativeScoreToZeroLabelAndCheckbox();
|
56
|
+
});
|
57
|
+
});
|
@@ -83,7 +83,7 @@ describe('Create item page - Graphing - Preview contents in all views', () => {
|
|
83
83
|
graphingPage.steps.verifyPointsPlottedOnPreviewTab([{ x: 2, xRange: 20, y: 1, yRange: 20 }, { x: 2, xRange: 20, y: -5, yRange: 20 }]);
|
84
84
|
});
|
85
85
|
|
86
|
-
it('By default, the point option should be in selected state and all other options should be
|
86
|
+
it('By default, the point option should be in selected state and all other options should be unselected', () => {
|
87
87
|
graphingPage.steps.verifyToolOptionSelectedPreviewTab('Point');
|
88
88
|
graphingPage.steps.verifyToolOptionNotSelectedPreviewTab(toolOptions.splice(1, toolOptions.length));
|
89
89
|
});
|
@@ -0,0 +1,72 @@
|
|
1
|
+
import { graphingPage } from "../../../pages";
|
2
|
+
import abortEarlySetup from "../../../support/helpers/abortEarly";
|
3
|
+
|
4
|
+
describe('Create Item page - Graphing: Specify correct answer, Alternative correct answer', () => {
|
5
|
+
before(() => {
|
6
|
+
cy.loginAs('admin');
|
7
|
+
});
|
8
|
+
|
9
|
+
describe('Specify correct answer section - \'Correct\' accordion', () => {
|
10
|
+
abortEarlySetup();
|
11
|
+
before(() => {
|
12
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
13
|
+
graphingPage.steps.addTextInQuestionInstructionsInputField('Plot the graph');
|
14
|
+
graphingPage.steps.selectToolOptions(['Circle']);
|
15
|
+
graphingPage.steps.checkPatternBackground();
|
16
|
+
graphingPage.steps.checkSnapToGridCheckbox();
|
17
|
+
cy.barsPreLoaderWait();
|
18
|
+
});
|
19
|
+
|
20
|
+
graphingPage.tests.verifyAutoScoredSpecifyCorrectAnswerHeaderSectionContents('graphing');
|
21
|
+
|
22
|
+
graphingPage.tests.verifySpecifyCorrectAnswerAccordionContentsAndFunctionality('Correct');
|
23
|
+
});
|
24
|
+
|
25
|
+
describe('Specify correct answer section - \'Alternative\' accordion', () => {
|
26
|
+
abortEarlySetup();
|
27
|
+
before(() => {
|
28
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
29
|
+
cy.barsPreLoaderWait();
|
30
|
+
graphingPage.steps.selectToolOptions(['Circle']);
|
31
|
+
});
|
32
|
+
|
33
|
+
graphingPage.tests.verifyAutoScoredAddAlternativeAnswerButtonAndValidation();
|
34
|
+
|
35
|
+
it('When user has added points and given input in response accordion answer input field in the \'Correct\' accordion, then the user should be able to add alternative answer for the question using \'Add alternative answer\' button', () => {
|
36
|
+
graphingPage.steps.selectGraphToolOptionSpecifyCorrectAnswer('Line');
|
37
|
+
graphingPage.steps.plotPointsOnGraphSpecifyCorrectAnswerSection([{ x: 0, xRange: 20, y: 1, yRange: 20 }, { x: 0, xRange: 20, y: 2, yRange: 20 }]);
|
38
|
+
graphingPage.steps.verifyPointsPlottedOnSpecifyCorrectAnswerSection([{ x: 0, xRange: 20, y: 1, yRange: 20 }, { x: 0, xRange: 20, y: 2, yRange: 20 }]);
|
39
|
+
graphingPage.steps.allotPoints(10);
|
40
|
+
graphingPage.steps.addAlternativeAnswerAccordion(1);
|
41
|
+
});
|
42
|
+
|
43
|
+
it('When user has added an alternative answer accordion, then the newly added alternative answer accordion should be in expanded state and the correct answer accordion should be in collapsed state', () => {
|
44
|
+
graphingPage.steps.verifyCorrectAnswerAccordionIsCollapsed();
|
45
|
+
graphingPage.steps.verifyAlternateAnswerAccordionIsExpanded(0);
|
46
|
+
});
|
47
|
+
|
48
|
+
graphingPage.tests.verifySpecifyCorrectAnswerAccordionContentsAndFunctionality('Alternative');
|
49
|
+
|
50
|
+
it('User should be able to add another alternative answer for the question using \'Add alternative answer\' button and the name for this new accordion should be \'Alternative 2\'', () => {
|
51
|
+
graphingPage.steps.addAlternativeAnswerAccordion(1);
|
52
|
+
});
|
53
|
+
|
54
|
+
graphingPage.tests.verifyWarningPopupAndAccordionNavigationWhenNoPointsAddedInAlternativeAccordion();
|
55
|
+
|
56
|
+
it('User should be able to remove alternative correct answer by clicking on the \'Delete\' icon button alongside alternative answer accordion and the name of the alternative answer accordions should get updated accordingly', () => {
|
57
|
+
cy.log('Set correct answer and points in alternative 2 accordion, then switch to alternative 1 accordion and click delete icon button');
|
58
|
+
graphingPage.steps.selectGraphToolOptionSpecifyCorrectAnswer('Ray');
|
59
|
+
graphingPage.steps.plotPointsOnGraphSpecifyCorrectAnswerSection([{ x: 1, xRange: 20, y: 2, yRange: 20 }, { x: 1, xRange: 20, y: 4, yRange: 20 }]);
|
60
|
+
graphingPage.steps.verifyPointsPlottedOnSpecifyCorrectAnswerSection([{ x: 1, xRange: 20, y: 2, yRange: 20 }, { x: 1, xRange: 20, y: 4, yRange: 20 }]);
|
61
|
+
graphingPage.steps.allotPoints(5);
|
62
|
+
graphingPage.steps.deleteAlternativeAnswerAccordion(0);
|
63
|
+
graphingPage.steps.verifyAlternativeAnswerAccordionNotExists(1);
|
64
|
+
graphingPage.steps.verifyAlternativeAnswerAccordionLabel(0);
|
65
|
+
});
|
66
|
+
|
67
|
+
it('When correct answers and points are set in alternative answer and user clicks on correct answer accordion, then correct answer accordion should be expanded and the alternative answer accordion should be collapsed', () => {
|
68
|
+
graphingPage.steps.expandCorrectAnswerAccordion();
|
69
|
+
graphingPage.steps.verifyAlternateAnswerAccordionIsCollapsed(0);
|
70
|
+
});
|
71
|
+
});
|
72
|
+
});
|
@@ -0,0 +1,120 @@
|
|
1
|
+
import { graphingPage } from "../../../pages";
|
2
|
+
import abortEarlySetup from "../../../support/helpers/abortEarly";
|
3
|
+
import utilities from "../../../support/helpers/utilities";
|
4
|
+
const css = Cypress.env('css');
|
5
|
+
|
6
|
+
describe('Create Item page - Graphing: Student view settings', () => {
|
7
|
+
before(() => {
|
8
|
+
cy.loginAs('admin');
|
9
|
+
});
|
10
|
+
|
11
|
+
describe('Allow students to check answer: Edit tab', () => {
|
12
|
+
abortEarlySetup();
|
13
|
+
before(() => {
|
14
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
15
|
+
cy.barsPreLoaderWait();
|
16
|
+
});
|
17
|
+
|
18
|
+
graphingPage.tests.verifyAllowStudentsToCheckAnswerLabelAndCheckboxCSS();
|
19
|
+
|
20
|
+
graphingPage.tests.verifyMaximumAttemptsDropdownDisplayedWhenAllowStudentsToCheckAnswerIsChecked();
|
21
|
+
|
22
|
+
graphingPage.tests.verifyMaxCheckAnswerAttemptsDropdown();
|
23
|
+
|
24
|
+
graphingPage.tests.verifyAllowStudentsToCheckAnswerContentsCSSAndA11y();
|
25
|
+
});
|
26
|
+
|
27
|
+
describe('Allow students to check answer: Preview tab', () => {
|
28
|
+
abortEarlySetup();
|
29
|
+
before(() => {
|
30
|
+
graphingPage.steps.navigateToCreateQuestion('Graphing');
|
31
|
+
cy.barsPreLoaderWait();
|
32
|
+
graphingPage.steps.addTextInQuestionInstructionsInputField('Plot the graph');
|
33
|
+
graphingPage.steps.selectToolOptions(['Polygon', 'Circle']);
|
34
|
+
graphingPage.steps.checkSnapToGridCheckbox();
|
35
|
+
graphingPage.steps.checkPatternBackground();
|
36
|
+
graphingPage.steps.selectGraphToolOptionEditTab('Line');
|
37
|
+
graphingPage.steps.plotPointsOnGraphEditTab([{ x: 2, xRange: 20, y: 1, yRange: 20 }, { x: 2, xRange: 20, y: -5, yRange: 20 }]);
|
38
|
+
graphingPage.steps.verifyPointsPlottedOnEditTabGraph([{ x: 2, xRange: 20, y: 1, yRange: 20 }, { x: 2, xRange: 20, y: -5, yRange: 20 }]);
|
39
|
+
graphingPage.steps.selectGraphToolOptionEditTab('Circle');
|
40
|
+
graphingPage.steps.plotPointsOnGraphEditTab([{ x: 0, xRange: 20, y: 0, yRange: 20 }, { x: 0, xRange: 20, y: 5, yRange: 20 }]);
|
41
|
+
graphingPage.steps.verifyPointsPlottedOnEditTabGraph([{ x: 0, xRange: 20, y: 0, yRange: 20 }, { x: 0, xRange: 20, y: 5, yRange: 20 }]);
|
42
|
+
graphingPage.steps.selectGraphToolOptionSpecifyCorrectAnswer('Polygon');
|
43
|
+
graphingPage.steps.plotPointsOnGraphSpecifyCorrectAnswerSection([{ x: -6, xRange: 20, y: 9, yRange: 20 }, { x: -6, xRange: 20, y: 7, yRange: 20 }, { x: -4, xRange: 20, y: 7, yRange: 20 }, { x: -4, xRange: 20, y: 9, yRange: 20 }, { x: -6, xRange: 20, y: 9, yRange: 20 }]);
|
44
|
+
graphingPage.steps.verifyPointsPlottedOnSpecifyCorrectAnswerSection([{ x: -6, xRange: 20, y: 9, yRange: 20 }, { x: -6, xRange: 20, y: 7, yRange: 20 }, { x: -4, xRange: 20, y: 7, yRange: 20 }, { x: -4, xRange: 20, y: 9, yRange: 20 }, { x: -6, xRange: 20, y: 9, yRange: 20 }]);
|
45
|
+
graphingPage.steps.selectGraphToolOptionSpecifyCorrectAnswer('Vector');
|
46
|
+
graphingPage.steps.plotPointsOnGraphSpecifyCorrectAnswerSection([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
47
|
+
graphingPage.steps.verifyPointsPlottedOnSpecifyCorrectAnswerSection([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
48
|
+
graphingPage.steps.allotPoints(20);
|
49
|
+
});
|
50
|
+
|
51
|
+
it('When the user has added options and specified correct answer and points then on checking the \'Allow students to check answer\' checkbox the Check answer button should be displayed in the preview tab', () => {
|
52
|
+
graphingPage.steps.checkAllowStudentToCheckAnswerCheckbox();
|
53
|
+
graphingPage.steps.switchToPreviewTab();
|
54
|
+
utilities.verifyInnerText(graphingPage.checkAnswerButton(), 'Check answer');
|
55
|
+
});
|
56
|
+
|
57
|
+
it('When the user enters answer in the response area and checks the answer then an icon should be displayed beside the selected option and the check answer button should be in enabled state', () => {
|
58
|
+
graphingPage.steps.switchToPreviewTab();
|
59
|
+
graphingPage.steps.selectGraphToolOptionPreviewTab('Vector');
|
60
|
+
graphingPage.steps.plotPointsOnGraphPreviewTab([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
61
|
+
graphingPage.steps.checkAnswer();
|
62
|
+
graphingPage.steps.verifyCorrectPointsPlottedOnGraphPreviewTab([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
63
|
+
graphingPage.steps.verifyCheckAnswerButtonEnabled();
|
64
|
+
});
|
65
|
+
|
66
|
+
it('When the user selects an option from the Maximum check answer attempts dropdown then the user should be able to check answer only those many times in the preview tab', () => {
|
67
|
+
graphingPage.steps.switchToEditTab();
|
68
|
+
graphingPage.steps.expandMaxCheckAnswerAttemptsDropdown();
|
69
|
+
graphingPage.steps.selectMaxCheckAnswerAttemptsDropdownListOption('1');
|
70
|
+
graphingPage.steps.switchToPreviewTab();
|
71
|
+
graphingPage.steps.selectGraphToolOptionPreviewTab('Vector');
|
72
|
+
graphingPage.steps.plotPointsOnGraphPreviewTab([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
73
|
+
graphingPage.steps.checkAnswer();
|
74
|
+
});
|
75
|
+
|
76
|
+
it('When the user reaches maximum check answer attempts, then the \'Check Answer\' button should become disabled', () => {
|
77
|
+
graphingPage.steps.verifyCheckAnswerButtonDisabled();
|
78
|
+
});
|
79
|
+
|
80
|
+
it('CSS of disabled \'Check Answer\' button', { tags: 'css' }, () => {
|
81
|
+
utilities.verifyCSS(graphingPage.checkAnswerButton(), {
|
82
|
+
'color': css.color.primaryBtnDisabled,
|
83
|
+
'font-size': css.fontSize.default,
|
84
|
+
'font-weight': css.fontWeight.semibold
|
85
|
+
});
|
86
|
+
});
|
87
|
+
|
88
|
+
it('Accessibility of disabled Check Answer button', { tags: 'a11y' }, () => {
|
89
|
+
cy.checkAccessibility(graphingPage.checkAnswerButton().parents('.check-answer-and-status-wrapper'));
|
90
|
+
});
|
91
|
+
|
92
|
+
it('When the user updates the value of \'Maximum check answer attempts\' dropdown, it should get reflected on the Preview tab', () => {
|
93
|
+
graphingPage.steps.switchToEditTab();
|
94
|
+
graphingPage.steps.expandMaxCheckAnswerAttemptsDropdown();
|
95
|
+
graphingPage.steps.selectMaxCheckAnswerAttemptsDropdownListOption('3');
|
96
|
+
graphingPage.steps.switchToPreviewTab();
|
97
|
+
graphingPage.steps.verifyCheckAnswerButtonEnabled();
|
98
|
+
graphingPage.steps.selectGraphToolOptionPreviewTab('Vector');
|
99
|
+
graphingPage.steps.plotPointsOnGraphPreviewTab([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
100
|
+
graphingPage.steps.checkAnswer();
|
101
|
+
graphingPage.steps.verifyCheckAnswerButtonEnabled();
|
102
|
+
});
|
103
|
+
|
104
|
+
it('When the user selects \'No limit\' option from the dropdown then user should be able to check answer multiple times', () => {
|
105
|
+
graphingPage.steps.switchToEditTab();
|
106
|
+
graphingPage.steps.expandMaxCheckAnswerAttemptsDropdown();
|
107
|
+
graphingPage.steps.selectMaxCheckAnswerAttemptsDropdownListOption('no limit');
|
108
|
+
graphingPage.steps.switchToPreviewTab();
|
109
|
+
graphingPage.steps.verifyCheckAnswerButtonEnabled();
|
110
|
+
graphingPage.steps.selectGraphToolOptionPreviewTab('Vector');
|
111
|
+
graphingPage.steps.plotPointsOnGraphPreviewTab([{ x: 6, xRange: 20, y: 0, yRange: 20 }, { x: 6, xRange: 20, y: 5, yRange: 20 }]);
|
112
|
+
graphingPage.steps.checkAnswer();
|
113
|
+
graphingPage.steps.verifyCheckAnswerButtonEnabled();
|
114
|
+
graphingPage.steps.selectGraphToolOptionPreviewTab('Polygon');
|
115
|
+
graphingPage.steps.plotPointsOnGraphPreviewTab([{ x: -6, xRange: 20, y: 9, yRange: 20 }, { x: -6, xRange: 20, y: 7, yRange: 20 }, { x: -4, xRange: 20, y: 7, yRange: 20 }, { x: -4, xRange: 20, y: 9, yRange: 20 }, { x: -6, xRange: 20, y: 9, yRange: 20 }]);
|
116
|
+
graphingPage.steps.checkAnswer();
|
117
|
+
graphingPage.steps.verifyCheckAnswerButtonEnabled();
|
118
|
+
});
|
119
|
+
});
|
120
|
+
});
|