itemengine-cypress-automation 1.0.196-drawingResponseMigration-b8f7823.0 → 1.0.196-drawingResponseMigration-0f99062.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.
@@ -346,6 +346,9 @@ export const extractLrnQuestionData = {
|
|
346
346
|
.each(($button) => {
|
347
347
|
let ariaLabel = $button[0].attributes["aria-label"].nodeValue;
|
348
348
|
toolbarButtons.push(ariaLabel);
|
349
|
+
})
|
350
|
+
.then(() => {
|
351
|
+
toolbarButtons.push('select');
|
349
352
|
});
|
350
353
|
});
|
351
354
|
obj.toolbarButtons = toolbarButtons;
|
@@ -339,8 +339,7 @@ export const verifyIeQuestionData = {
|
|
339
339
|
let ariaLabel = $button[0].attributes["aria-label"].nodeValue;
|
340
340
|
ieButtonsActual.push(ariaLabel);
|
341
341
|
}).then(() => {
|
342
|
-
|
343
|
-
expect(ieButtonsFiltered).to.have.deep.members(ieButtonsExpected);
|
342
|
+
expect(ieButtonsActual).to.have.deep.members(ieButtonsExpected);
|
344
343
|
});
|
345
344
|
iePage.drawingResponseLowerCanvas()
|
346
345
|
.then(($canvas) => {
|