itemengine-cypress-automation 1.0.196-drawingResponseMigration-b8f7823.0 → 1.0.196-drawingResponseMigration-0f99062.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -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) => {
|