itemengine-cypress-automation 1.0.416 → 1.0.417
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.
@@ -55,6 +55,7 @@ describe('Edit item - Charts - Bar', () => {
|
|
55
55
|
chartsBarPage.steps.setMaxBarCountValue(2);
|
56
56
|
chartsBarPage.steps.updateNewBarLabelInputFieldValue('Day');
|
57
57
|
cy.wait(500);
|
58
|
+
utilities.scrollIntoView(chartsBarPage.selectChartTypeChartToolsAddBarOrPointButton());
|
58
59
|
chartsBarPage.steps.addBarOrPointInChartInSelectChartTypeSection();
|
59
60
|
utilities.scrollIntoView(chartsBarPage.specifyCorrectAnswerSectionWrapper());
|
60
61
|
chartsBarPage.steps.setBarValueInSpecifyCorrectAnswerSection({ barIndex: 3, value: 6, range: 20, gridSnapping: 2 }, 'horizontal');
|
@@ -54,6 +54,7 @@ describe('Edit item - Charts - Bar', () => {
|
|
54
54
|
chartsBarPage.steps.setMaxBarCountValue(2);
|
55
55
|
chartsBarPage.steps.updateNewBarLabelInputFieldValue('Day');
|
56
56
|
cy.wait(500);
|
57
|
+
utilities.scrollIntoView(chartsBarPage.selectChartTypeChartToolsAddBarOrPointButton());
|
57
58
|
chartsBarPage.steps.addBarOrPointInChartInSelectChartTypeSection();
|
58
59
|
utilities.scrollIntoView(chartsBarPage.specifyCorrectAnswerSectionWrapper());
|
59
60
|
chartsBarPage.steps.setBarValueInSpecifyCorrectAnswerSection({ barIndex: 3, value: 6, range: 20, gridSnapping: 2 });
|
@@ -271,7 +271,7 @@ const steps = {
|
|
271
271
|
* @param {string} pointLabel Label to be given to the point
|
272
272
|
*/
|
273
273
|
editPointLabelInPreviewTab: (pointIndex, pointLabel) => {
|
274
|
-
utilities.
|
274
|
+
utilities.hoverOverElement(utilities.getNthElement(chartsLinePage.previewTabPoint(), pointIndex));
|
275
275
|
chartsLinePage.barAndPointTooltipLabelButton()
|
276
276
|
.click();
|
277
277
|
chartsLinePage.steps.addInputToChartLabelPopupInputField(pointLabel);
|
package/package.json
CHANGED
@@ -37,8 +37,8 @@ function setCiBuildId(user, startTime) {
|
|
37
37
|
tags = 'untagged';
|
38
38
|
} else if (envArgs.grepTags) {
|
39
39
|
tags = envArgs.grepTags;
|
40
|
-
if (tags
|
41
|
-
testType = '[E2E]';
|
40
|
+
if (tags === 'smoke') {
|
41
|
+
testType = '[E2E]';
|
42
42
|
}
|
43
43
|
} else {
|
44
44
|
tags = '--';
|