itemengine-cypress-automation 1.0.514-IEI-3834-060a7e4.0 → 1.0.514-IEI-3834-4b28440.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.
@@ -93,7 +93,6 @@ const selectors = {
|
|
93
93
|
numberLineAxisPreviewTab: () => cy.get('[class*="question-preview-wrapper"] .number-line-wrapper').eq(0),
|
94
94
|
labelsNumberLineAxisPreviewTab: () => cy.get('[class*="question-preview-wrapper"] [class*="DotPlotChartstyles__BottomWrapper"]').eq(0).find('.label-wrapper [class*="DotPlotChartstyles__Label"]'),
|
95
95
|
minorNodesPreviewTabSection: () => cy.get('[class*="question-preview-wrapper"] .number-line'),
|
96
|
-
|
97
96
|
//Correct answer section
|
98
97
|
correctAnswersLabel: () => cy.get('[class*="CorrectAnswerHeader"]:visible'),
|
99
98
|
dotPlotChartCorrectAnswerSection: () => cy.get('[class*="question-preview-wrapper"] [class*="DotPlotChartstyles__ChartWrapper"]').eq(1),
|
@@ -1680,19 +1679,19 @@ const steps = {
|
|
1680
1679
|
});
|
1681
1680
|
},
|
1682
1681
|
|
1683
|
-
clickOnDisplayMinorNodeCheckbox:()=>{
|
1684
|
-
|
1685
|
-
|
1682
|
+
clickOnDisplayMinorNodeCheckbox: () => {
|
1683
|
+
layoutSectionComponent.displayMinorNodeCheckbox()
|
1684
|
+
.click();
|
1686
1685
|
},
|
1687
1686
|
|
1688
|
-
verifyDisplayMinorNodesCheckboxChecked:()=>{
|
1687
|
+
verifyDisplayMinorNodesCheckboxChecked: () => {
|
1689
1688
|
layoutSectionComponent.displayMinorNodeCheckbox()
|
1690
|
-
|
1689
|
+
.should('be.checked');
|
1691
1690
|
},
|
1692
1691
|
|
1693
|
-
verifyDisplayMinorNodesCheckboxUnchecked:()=>{
|
1692
|
+
verifyDisplayMinorNodesCheckboxUnchecked: () => {
|
1694
1693
|
layoutSectionComponent.displayMinorNodeCheckbox()
|
1695
|
-
|
1694
|
+
.should('not.be.checked');
|
1696
1695
|
},
|
1697
1696
|
|
1698
1697
|
verifyMinorNodesInSelectChartTypeSectionIsVisible: () => {
|