itemengine-cypress-automation 1.0.368-IEI-5683-and-IEI-5702-manualAndNonScoredScript-1b2d1d1.0 → 1.0.368
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.
@@ -15,6 +15,14 @@ const steps = {
|
|
15
15
|
gradingViewPage.scoredPointsInputField()
|
16
16
|
.should('have.value', scoredPoints);
|
17
17
|
utilities.verifyTextContent(gradingViewPage.TotalPoints(), `/ ${TotalPoints} points`)
|
18
|
+
},
|
19
|
+
|
20
|
+
/**
|
21
|
+
* @description Verify that scores are not displayed in grading view for non scored questions
|
22
|
+
*/
|
23
|
+
verifyScoresNotVisibleForNonScoredQuestions: () => {
|
24
|
+
utilities.verifyElementVisibilityState(gradingViewPage.scoredPointsInputField(),'notExist'),
|
25
|
+
utilities.verifyElementVisibilityState(gradingViewPage.TotalPoints(),'notExist')
|
18
26
|
}
|
19
27
|
}
|
20
28
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "itemengine-cypress-automation",
|
3
|
-
"version": "1.0.368
|
3
|
+
"version": "1.0.368",
|
4
4
|
"description": "",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -52,4 +52,4 @@
|
|
52
52
|
"devDependencies": {
|
53
53
|
"@applitools/eyes-cypress": "^3.47.0"
|
54
54
|
}
|
55
|
-
}
|
55
|
+
}
|