dimsum-e2e-tests 3.70.0-next.52 → 3.70.0-next.54

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.
Files changed (25) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/ds-card-v3/DSCardV3CO.js +1 -1
  3. package/ds-card-v3/accordion/DSCardV3.accordion-aria.keyboard.func.spec.js +49 -0
  4. package/ds-card-v3/accordion/DSCardV3.accordion.axe-core.func.spec.js +2 -2
  5. package/ds-card-v3/action/DSCardV3.action.axe-core.func.spec.js +24 -0
  6. package/ds-card-v3/action/DSCardV3.action.func.spec.js +53 -0
  7. package/ds-card-v3/action/DSCardV3.action.visual.spec.js +28 -0
  8. package/ds-card-v3/drag-n-drop/DSCardV3.DnD.axe-core.func.spec.js +0 -19
  9. package/ds-card-v3/multi-select/DSCardV3.multiselect.axe-core.func.spec.js +47 -0
  10. package/ds-card-v3/multiple-action/DSCardV3.multiple-action.axe-core.func.spec.js +35 -0
  11. package/ds-card-v3/multiple-control/DSCardV3.multi-control.axe-core.func.spec.js +34 -0
  12. package/ds-card-v3/multiple-control/DSCardV3.multi-control.func.spec.js +2 -1
  13. package/ds-card-v3/multiple-control/DSCardV3.multi-control.visual.spec.js +29 -0
  14. package/ds-card-v3/no-action/DSCardV3.no-action.axe-core.func.spec.js +1 -1
  15. package/ds-card-v3/notification-badges/DSCardV3.notification-badges.axe-core.func.spec.js +33 -0
  16. package/ds-card-v3/notification-badges/DSCardV3.notification-badges.visual.spec.js +28 -0
  17. package/ds-card-v3/variant-accented/DSCardV3.variant-accented.axe-core.func.spec.js +45 -0
  18. package/ds-card-v3/variant-accented-disabled/DSCardV3.variant-accented-disabled.axe-core.func.spec.js +35 -0
  19. package/ds-card-v3/variant-accented-disabled/DSCardV3.variant-accented-disabled.visual.spec.js +28 -0
  20. package/ds-card-v3/variant-disabled/DSCardV3.variant-disabled.axe-core.func.spec.js +1 -1
  21. package/ds-card-v3/variant-disabled/DSCardV3.variant-disabled.func.spec.js +61 -0
  22. package/ds-card-v3/variant-disabled/DSCardV3.variant-disabled.visual.spec.js +20 -0
  23. package/ds-card-v3/{disabled/DSCardV3.disabled-non-interactive.func.spec.js → variant-disabled/DSCardV3.variantDisabled-non-interactive.func.spec.js} +1 -1
  24. package/package.json +149 -149
  25. package/ds-card-v3/disabled/DSCardV3.disabled.visual.spec.js +0 -16
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 3.70.0-next.54 (2026-07-31)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ds-app-picker:: re-organized data-flow for improved stability and long-term scaling [PUI-17213](https://jira.elliemae.io/browse/PUI-17213) ([#8242](https://git.elliemae.io/platform-ui/dimsum/issues/8242)) ([753be67](https://git.elliemae.io/platform-ui/dimsum/commit/753be67beb6d5dcca2c6d8808ebe6540cf76ffc3))
11
+
12
+ ## 3.70.0-next.53 (2026-07-28)
13
+
14
+ **Note:** Version bump only for package dimsum-e2e-tests
15
+
6
16
  ## 3.70.0-next.52 (2026-07-27)
7
17
 
8
18
  ### Bug Fixes
@@ -15,7 +15,7 @@ export default class DSCardV3CO extends PageObject {
15
15
 
16
16
  static dragAndDropURL = new Urlbuilder(PATH_E2E_CARD_V3, 'drag-and-drop-test');
17
17
 
18
- static multiActionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multi-action-test');
18
+ static multiActionURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multiple-action-test');
19
19
 
20
20
  static multipleControlURL = new Urlbuilder(PATH_E2E_CARD_V3, 'multiple-control-test');
21
21
 
@@ -0,0 +1,49 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18823 - DSCardV3:: accordion ARIA keyboard operation - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.accordionAriaURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should move focus to the accordion trigger as the first tab stop - [TAB]', async () => {
17
+ const trigger = await DSCardV3CO.getAccordionButton();
18
+ await trigger.waitForDisplayed();
19
+ await browser.keys(Key.Tab);
20
+
21
+ await expect(trigger).toBeFocused();
22
+ await expect(trigger).toHaveAttribute('aria-expanded', 'false');
23
+ });
24
+
25
+ it('02: should expand the panel and keep focus on the trigger - [ENTER]', async () => {
26
+ const trigger = await DSCardV3CO.getAccordionButton();
27
+ await browser.keys(Key.Enter);
28
+
29
+ await expect(trigger).toHaveAttribute('aria-expanded', 'true');
30
+ await expect(trigger).toBeFocused();
31
+ });
32
+
33
+ it('03: should collapse the panel and keep focus on the trigger - [SPACE]', async () => {
34
+ const trigger = await DSCardV3CO.getAccordionButton();
35
+ await browser.keys(Key.Space);
36
+
37
+ await expect(trigger).toHaveAttribute('aria-expanded', 'false');
38
+ await expect(trigger).toBeFocused();
39
+ });
40
+
41
+ it('04: should move focus from the trigger to the card actions button - [TAB]', async () => {
42
+ await browser.keys(Key.Tab);
43
+ const cardActions = await DSCardV3CO.getButtonByIndex(1);
44
+
45
+ await expect(cardActions).toBeFocused();
46
+ await expect(cardActions).toHaveAttribute('aria-label', 'Card actions');
47
+ });
48
+ });
49
+ }
@@ -15,14 +15,14 @@ if (
15
15
  it('01: should display the accordion closed and pass axecore test', async () => {
16
16
  await (await DSCardV3CO.getAccordionButton()).waitForDisplayed();
17
17
  const result = await axeCoreCheck();
18
- expect(result.length).toBe(0);
18
+ await expect(result).toHaveLength(0);
19
19
  });
20
20
  it('02: should open the accordion and pass axecore test', async () => {
21
21
  await (await DSCardV3CO.getAccordionButton()).click();
22
22
  const getAccordionFirstElement = await DSCardV3CO.getElement(2);
23
23
  await getAccordionFirstElement.waitForDisplayed();
24
24
  const result = await axeCoreCheck();
25
- expect(result.length).toBe(0);
25
+ await expect(result).toHaveLength(0);
26
26
  });
27
27
  });
28
28
  }
@@ -0,0 +1,24 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+ import { axeCoreCheck } from '../../helpers';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18803 - DSCardV3:: action button card accessibility - Axe-Core', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.actionURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should have no accessibility violations', async () => {
17
+ const card = await DSCardV3CO.getCardContainer();
18
+ await card.waitForDisplayed();
19
+
20
+ const result = await axeCoreCheck();
21
+ await expect(result).toHaveLength(0);
22
+ });
23
+ });
24
+ }
@@ -0,0 +1,53 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18802 - DSCardV3:: action button structure and keyboard focus - Func', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.actionURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should render the card root, header, title, subtitle and a single action button', async () => {
17
+ const card = await DSCardV3CO.getCardContainer();
18
+ await card.waitForDisplayed();
19
+
20
+ const header = await DSCardV3CO.getCardHeader();
21
+ await expect(header).toBeDisplayed();
22
+
23
+ const title = await DSCardV3CO.getElement(0);
24
+ await expect(title).toBeDisplayed();
25
+ await expect(title).toHaveText('Card Title');
26
+ await expect(await title.getTagName()).toBe('h3');
27
+
28
+ const subtitle = await DSCardV3CO.getElement(1);
29
+ await expect(subtitle).toBeDisplayed();
30
+ await expect(subtitle).toHaveText('Card Subtitle');
31
+
32
+ const deleteAction = await DSCardV3CO.getButtonByIndex(0);
33
+ await expect(deleteAction).toBeDisplayed();
34
+ await expect(deleteAction).toHaveAttribute('aria-label', 'Delete Action');
35
+ await expect(deleteAction).toHaveAttribute('type', 'button');
36
+
37
+ const actionButtons = await $$('[data-testid="ds-button"]');
38
+ await expect(actionButtons).toBeElementsArrayOfSize(1);
39
+ });
40
+
41
+ it('02: should move focus to the action button - [TAB]', async () => {
42
+ await browser.keys(Key.Tab);
43
+ const deleteAction = await DSCardV3CO.getButtonByIndex(0);
44
+ await expect(deleteAction).toBeFocused();
45
+ });
46
+
47
+ it('03: should move focus away from the action button - [SHIFT+TAB]', async () => {
48
+ await browser.keys([Key.Shift, Key.Tab]);
49
+ const deleteAction = await DSCardV3CO.getButtonByIndex(0);
50
+ await expect(deleteAction).not.toBeFocused();
51
+ });
52
+ });
53
+ }
@@ -0,0 +1,28 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
+ describe('PUI-18801 - DSCardV3:: action button card default and focus states - Visual', () => {
6
+ before('loading page', async () => {
7
+ const errorOnGo = await DSCardV3CO.actionURL.go();
8
+ if (errorOnGo) throw errorOnGo;
9
+ });
10
+
11
+ it('01: should display the card with a single action button in the header', async () => {
12
+ const card = await DSCardV3CO.getCardContainer();
13
+ await card.waitForDisplayed();
14
+
15
+ const snapshot = await browser.percyCheckScreenshot();
16
+ await expect(snapshot).toEqual(0);
17
+ });
18
+
19
+ it('02: should display the action button with its focus ring - [TAB]', async () => {
20
+ await browser.keys(Key.Tab);
21
+ const deleteAction = await DSCardV3CO.getButtonByIndex(0);
22
+ await expect(deleteAction).toBeFocused();
23
+
24
+ const snapshot = await browser.percyCheckScreenshot();
25
+ await expect(snapshot).toEqual(0);
26
+ });
27
+ });
28
+ }
@@ -21,39 +21,20 @@ if (
21
21
  });
22
22
 
23
23
  it('02: should pass axe-core while an item is being dragged and cancelled - [TAB][ENTER][ESC]', async () => {
24
- const liveRegion = await DSCardV3CO.getDnDLiveRegion();
25
24
  await browser.keys(Key.Tab);
26
25
  const handle = await DSCardV3CO.getCardHandlerByIndex(0);
27
26
  await expect(handle).toBeFocused();
28
27
  await browser.keys(Key.Return);
29
- await browser.waitUntil(
30
- async () => (await liveRegion.getProperty('textContent')).includes('Draggable item was moved to position 1.'),
31
- { timeoutMsg: 'Expected the live region to announce the item pickup' },
32
- );
33
28
  await browser.keys(Key.Escape);
34
29
  const result = await axeCoreCheck();
35
30
  await expect(result).toHaveLength(0);
36
31
  });
37
32
 
38
33
  it('03: should pass axe-core after an item has been dropped - [TAB][ENTER][ARROWDOWN][ENTER]', async () => {
39
- const liveRegion = await DSCardV3CO.getDnDLiveRegion();
40
34
  await browser.keys(Key.Tab);
41
35
  await browser.keys(Key.Return);
42
- await browser.waitUntil(
43
- async () => (await liveRegion.getProperty('textContent')).includes('was moved to position'),
44
- { timeoutMsg: 'Expected the live region to announce the item pickup' },
45
- );
46
-
47
36
  await browser.keys(Key.ArrowDown);
48
- await browser.waitUntil(
49
- async () => (await liveRegion.getProperty('textContent')).includes('was moved to position'),
50
- { timeoutMsg: 'Expected the live region to announce the move before dropping' },
51
- );
52
37
  await browser.keys(Key.Return);
53
- await browser.waitUntil(
54
- async () => (await liveRegion.getProperty('textContent')).includes('was dropped over position'),
55
- { timeoutMsg: 'Expected the live region to announce the drop' },
56
- );
57
38
  const result = await axeCoreCheck();
58
39
  await expect(result).toHaveLength(0);
59
40
  });
@@ -0,0 +1,47 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+ import { axeCoreCheck } from '../../helpers';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18804 - DSCardV3:: multi-select checkbox states accessibility - Axe-Core', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.multiSelectURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should pass axe-core with no card selected', async () => {
17
+ const group = await DSCardV3CO.getGroupContainer();
18
+ await group.waitForDisplayed();
19
+
20
+ const result = await axeCoreCheck();
21
+ await expect(result).toHaveLength(0);
22
+ });
23
+
24
+ it('02: should pass axe-core with the first card selected', async () => {
25
+ const firstCheckbox = await DSCardV3CO.getCardCheckBoxByIndex(0);
26
+ await firstCheckbox.waitForExist();
27
+ await firstCheckbox.click();
28
+ await expect(firstCheckbox).toBeSelected();
29
+
30
+ const result = await axeCoreCheck();
31
+ await expect(result).toHaveLength(0);
32
+ });
33
+
34
+ it('03: should pass axe-core with both cards selected', async () => {
35
+ const secondCheckbox = await DSCardV3CO.getCardCheckBoxByIndex(1);
36
+ await secondCheckbox.waitForExist();
37
+ await secondCheckbox.click();
38
+ await expect(secondCheckbox).toBeSelected();
39
+
40
+ const firstCheckbox = await DSCardV3CO.getCardCheckBoxByIndex(0);
41
+ await expect(firstCheckbox).toBeSelected();
42
+
43
+ const result = await axeCoreCheck();
44
+ await expect(result).toHaveLength(0);
45
+ });
46
+ });
47
+ }
@@ -0,0 +1,35 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+ import { axeCoreCheck } from '../../helpers';
4
+
5
+ if (
6
+ (!browser.capabilities['ice:options'].isPhone &&
7
+ !browser.capabilities['ice:options'].isTablet &&
8
+ browser.capabilities.browserName === 'chrome') ||
9
+ browser.capabilities.browserName === 'Chrome'
10
+ ) {
11
+ describe('PUI-18827 - DSCardV3:: multiple action buttons accessibility - Axe-Core', () => {
12
+ before('loading page', async () => {
13
+ const errorOnGo = await DSCardV3CO.multiActionURL.go();
14
+ if (errorOnGo) throw errorOnGo;
15
+ });
16
+
17
+ it('01: should have no accessibility violations', async () => {
18
+ const card = await DSCardV3CO.getCardContainer();
19
+ await card.waitForDisplayed();
20
+
21
+ const result = await axeCoreCheck();
22
+ await expect(result).toHaveLength(0);
23
+ });
24
+
25
+ it('02: should have no accessibility violations with the first action button focused', async () => {
26
+ await browser.keys(Key.Tab);
27
+ const flagAction = await DSCardV3CO.getButtonByIndex(0);
28
+ await expect(flagAction).toBeFocused();
29
+ await expect(flagAction).toHaveAttribute('aria-label', 'Flag action');
30
+
31
+ const result = await axeCoreCheck();
32
+ await expect(result).toHaveLength(0);
33
+ });
34
+ });
35
+ }
@@ -0,0 +1,34 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+ import { axeCoreCheck } from '../../helpers';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18826 - DSCardV3:: multiple control accessibility - Axe-Core', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.multipleControlURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should have no accessibility violations with no card selected', async () => {
17
+ const card = await DSCardV3CO.getCardContainerByIndex(0);
18
+ await card.waitForDisplayed();
19
+
20
+ const result = await axeCoreCheck();
21
+ await expect(result).toHaveLength(0);
22
+ });
23
+
24
+ it('02: should have no accessibility violations with the first card selected', async () => {
25
+ const firstCheckbox = await DSCardV3CO.getCardCheckBoxByIndex(0);
26
+ await firstCheckbox.waitForExist();
27
+ await firstCheckbox.click();
28
+ await expect(firstCheckbox).toBeSelected();
29
+
30
+ const result = await axeCoreCheck();
31
+ await expect(result).toHaveLength(0);
32
+ });
33
+ });
34
+ }
@@ -13,7 +13,8 @@ if (
13
13
  const errorOnGo = await DSCardV3CO.multipleControlURL.go();
14
14
  if (errorOnGo) throw errorOnGo;
15
15
  });
16
- it('01: first checkbox selection should not select second checkbox - [TAB + SPACE]', async () => {
16
+ it('01: first checkbox selection should not select second checkbox - [TAB + TAB + SPACE]', async () => {
17
+ await browser.keys(Key.Tab);
17
18
  await browser.keys(Key.Tab);
18
19
  await browser.keys(Key.Space);
19
20
  const firstCheckbox = await DSCardV3CO.getCardCheckBoxByIndex(0);
@@ -0,0 +1,29 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
4
+ describe('PUI-18825 - DSCardV3:: multiple control card states - Visual', () => {
5
+ before('loading page', async () => {
6
+ const errorOnGo = await DSCardV3CO.multipleControlURL.go();
7
+ if (errorOnGo) throw errorOnGo;
8
+ });
9
+
10
+ it('01: should display both cards with their controls unselected', async () => {
11
+ const firstCard = await DSCardV3CO.getCardContainerByIndex(0);
12
+ await firstCard.waitForDisplayed();
13
+ const secondCard = await DSCardV3CO.getCardContainerByIndex(1);
14
+ await expect(secondCard).toBeDisplayed();
15
+
16
+ const snapshot = await browser.percyCheckScreenshot();
17
+ await expect(snapshot).toEqual(0);
18
+ });
19
+
20
+ it('02: should display the first card selected', async () => {
21
+ const firstCheckbox = await DSCardV3CO.getCardCheckBoxByIndex(0);
22
+ await firstCheckbox.click();
23
+ await expect(firstCheckbox).toBeSelected();
24
+
25
+ const snapshot = await browser.percyCheckScreenshot();
26
+ await expect(snapshot).toEqual(0);
27
+ });
28
+ });
29
+ }
@@ -16,7 +16,7 @@ if (
16
16
  const firstElement = await DSCardV3CO.getElement(0);
17
17
  await firstElement.waitForExist();
18
18
  const result = await axeCoreCheck();
19
- expect(result.length).toBe(0);
19
+ await expect(result).toHaveLength(0);
20
20
  });
21
21
  });
22
22
  }
@@ -0,0 +1,33 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+ import { axeCoreCheck } from '../../helpers';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18806 - DSCardV3:: notification badge card accessibility - Axe-Core', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.notificationBadgesURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should have no accessibility violations', async () => {
17
+ const card = await DSCardV3CO.getCardContainer();
18
+ await card.waitForDisplayed();
19
+
20
+ const result = await axeCoreCheck();
21
+ await expect(result).toHaveLength(0);
22
+ });
23
+
24
+ it('02: should have no accessibility violations with an action button focused', async () => {
25
+ const flagAction = await DSCardV3CO.getButtonByIndex(0);
26
+ await flagAction.click();
27
+ await expect(flagAction).toBeFocused();
28
+
29
+ const result = await axeCoreCheck();
30
+ await expect(result).toHaveLength(0);
31
+ });
32
+ });
33
+ }
@@ -0,0 +1,28 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
+ describe('PUI-18805 - DSCardV3:: notification badge card render - Visual', () => {
6
+ before('loading page', async () => {
7
+ const errorOnGo = await DSCardV3CO.notificationBadgesURL.go();
8
+ if (errorOnGo) throw errorOnGo;
9
+ });
10
+
11
+ it('01: should display the card with a notification badge and action buttons', async () => {
12
+ const card = await DSCardV3CO.getCardContainer();
13
+ await card.waitForDisplayed();
14
+
15
+ const snapshot = await browser.percyCheckScreenshot();
16
+ await expect(snapshot).toEqual(0);
17
+ });
18
+
19
+ it('02: should display the leading action button with its focus ring - [TAB]', async () => {
20
+ await browser.keys(Key.Tab);
21
+ const flagAction = await DSCardV3CO.getButtonByIndex(0);
22
+ await expect(flagAction).toBeFocused();
23
+
24
+ const snapshot = await browser.percyCheckScreenshot();
25
+ await expect(snapshot).toEqual(0);
26
+ });
27
+ });
28
+ }
@@ -0,0 +1,45 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+ import { axeCoreCheck } from '../../helpers';
3
+
4
+ if (
5
+ (!browser.capabilities['ice:options'].isPhone &&
6
+ !browser.capabilities['ice:options'].isTablet &&
7
+ browser.capabilities.browserName === 'chrome') ||
8
+ browser.capabilities.browserName === 'Chrome'
9
+ ) {
10
+ describe('PUI-18807 - DSCardV3:: variant accented content and menu states accessibility - Axe-Core', () => {
11
+ before('loading page', async () => {
12
+ const errorOnGo = await DSCardV3CO.variantAccentURL.go();
13
+ if (errorOnGo) throw errorOnGo;
14
+ });
15
+
16
+ it('01: should pass axe-core in the collapsed state', async () => {
17
+ const expandContentButton = await DSCardV3CO.getExpandContentButton();
18
+ await expandContentButton.waitForDisplayed();
19
+ await expect(expandContentButton).toHaveAttribute('aria-expanded', 'false');
20
+
21
+ const result = await axeCoreCheck();
22
+ await expect(result).toHaveLength(0);
23
+ });
24
+
25
+ it('02: should pass axe-core with the card body expanded', async () => {
26
+ const expandContentButton = await DSCardV3CO.getExpandContentButton();
27
+ await expandContentButton.click();
28
+ await expect(expandContentButton).toHaveAttribute('aria-expanded', 'true');
29
+ const cardBody = await DSCardV3CO.getCardBody();
30
+ await expect(cardBody).toBeDisplayedInViewport();
31
+
32
+ const result = await axeCoreCheck();
33
+ await expect(result).toHaveLength(0);
34
+ });
35
+
36
+ it('03: should pass axe-core with the card actions menu open', async () => {
37
+ const menuButton = await DSCardV3CO.getButtonByIndex(1);
38
+ await menuButton.click();
39
+ await expect(menuButton).toHaveAttribute('aria-expanded', 'true');
40
+
41
+ const result = await axeCoreCheck();
42
+ await expect(result).toHaveLength(0);
43
+ });
44
+ });
45
+ }
@@ -0,0 +1,35 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+ import { axeCoreCheck } from '../../helpers';
4
+
5
+ if (
6
+ (!browser.capabilities['ice:options'].isPhone &&
7
+ !browser.capabilities['ice:options'].isTablet &&
8
+ browser.capabilities.browserName === 'chrome') ||
9
+ browser.capabilities.browserName === 'Chrome'
10
+ ) {
11
+ describe('PUI-18808 - DSCardV3:: variant accented-disabled accessibility - Axe-Core', () => {
12
+ before('loading page', async () => {
13
+ const errorOnGo = await DSCardV3CO.variantAccentedDisabledURL.go();
14
+ if (errorOnGo) throw errorOnGo;
15
+ });
16
+
17
+ it('01: should have no accessibility violations', async () => {
18
+ const card = await DSCardV3CO.getCardContainer();
19
+ await card.waitForDisplayed();
20
+
21
+ const result = await axeCoreCheck();
22
+ await expect(result).toHaveLength(0);
23
+ });
24
+
25
+ it('02: should have no violations with the aria-disabled control focused', async () => {
26
+ const expandContentButton = await DSCardV3CO.getExpandContentButton();
27
+ await expect(expandContentButton).toHaveAttribute('aria-disabled', 'true');
28
+ await browser.keys(Key.Tab);
29
+ await expect(expandContentButton).toBeFocused();
30
+
31
+ const result = await axeCoreCheck();
32
+ await expect(result).toHaveLength(0);
33
+ });
34
+ });
35
+ }
@@ -0,0 +1,28 @@
1
+ import { Key } from 'webdriverio';
2
+ import DSCardV3CO from '../DSCardV3CO';
3
+
4
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
5
+ describe('PUI-18809 - DSCardV3:: variant accented-disabled render and focus - Visual', () => {
6
+ before('loading page', async () => {
7
+ const errorOnGo = await DSCardV3CO.variantAccentedDisabledURL.go();
8
+ if (errorOnGo) throw errorOnGo;
9
+ });
10
+
11
+ it('01: should display the accented-disabled card in its collapsed state', async () => {
12
+ const card = await DSCardV3CO.getCardContainer();
13
+ await card.waitForDisplayed();
14
+
15
+ const snapshot = await browser.percyCheckScreenshot();
16
+ await expect(snapshot).toEqual(0);
17
+ });
18
+
19
+ it('02: should display the focus ring on the aria-disabled expand control - [TAB]', async () => {
20
+ await browser.keys(Key.Tab);
21
+ const expandContentButton = await DSCardV3CO.getExpandContentButton();
22
+ await expect(expandContentButton).toBeFocused();
23
+
24
+ const snapshot = await browser.percyCheckScreenshot();
25
+ await expect(snapshot).toEqual(0);
26
+ });
27
+ });
28
+ }
@@ -16,7 +16,7 @@ if (
16
16
  const firstItem = await DSCardV3CO.getCardHeader();
17
17
  await firstItem.waitForDisplayed();
18
18
  const result = await axeCoreCheck();
19
- expect(result.length).toBe(0);
19
+ await expect(result).toHaveLength(0);
20
20
  });
21
21
  });
22
22
  }
@@ -0,0 +1,61 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (
4
+ (!browser.capabilities['ice:options'].isPhone &&
5
+ !browser.capabilities['ice:options'].isTablet &&
6
+ browser.capabilities.browserName === 'chrome') ||
7
+ browser.capabilities.browserName === 'Chrome'
8
+ ) {
9
+ describe('PUI-18810 - DSCardV3:: variant disabled cards non-interactive structure - Func', () => {
10
+ before('loading page', async () => {
11
+ const errorOnGo = await DSCardV3CO.variantDisabledURL.go();
12
+ if (errorOnGo) throw errorOnGo;
13
+ });
14
+
15
+ it('01: should render both disabled cards as divs without the HTML disabled attribute', async () => {
16
+ const disabledCard = await DSCardV3CO.getCardContainerByIndex(0);
17
+ await disabledCard.waitForDisplayed();
18
+ expect((await disabledCard.getTagName()).toLowerCase()).toBe('div');
19
+ expect(await disabledCard.getAttribute('disabled')).toBeNull();
20
+
21
+ const accentedDisabledCard = await DSCardV3CO.getCardContainerByIndex(1);
22
+ await expect(accentedDisabledCard).toBeDisplayed();
23
+ expect((await accentedDisabledCard.getTagName()).toLowerCase()).toBe('div');
24
+ expect(await accentedDisabledCard.getAttribute('disabled')).toBeNull();
25
+ });
26
+
27
+ it('02: should keep both cards visible to assistive technology', async () => {
28
+ const disabledCard = await DSCardV3CO.getCardContainerByIndex(0);
29
+ expect(await disabledCard.getAttribute('aria-hidden')).toBeNull();
30
+
31
+ const accentedDisabledCard = await DSCardV3CO.getCardContainerByIndex(1);
32
+ expect(await accentedDisabledCard.getAttribute('aria-hidden')).toBeNull();
33
+ });
34
+
35
+ it('03: should expose the title and description of both cards', async () => {
36
+ const firstHeading = await DSCardV3CO.getHByLevelAndIndex(3, 0);
37
+ await expect(firstHeading).toBeExisting();
38
+ await expect(firstHeading).toHaveText('Disabled Card');
39
+
40
+ const firstDescription = await DSCardV3CO.getElement(1);
41
+ await expect(firstDescription).toHaveText('Description card');
42
+
43
+ const secondHeading = await DSCardV3CO.getHByLevelAndIndex(3, 1);
44
+ await expect(secondHeading).toBeExisting();
45
+ await expect(secondHeading).toHaveText('Disabled Card');
46
+
47
+ const secondDescription = await DSCardV3CO.getElement(3);
48
+ await expect(secondDescription).toHaveText('Description card');
49
+ });
50
+
51
+ it('04: should contain no focusable controls in either card', async () => {
52
+ const disabledCard = await DSCardV3CO.getCardContainerByIndex(0);
53
+ const firstCardControls = await disabledCard.$$('button, a[href], input, select, textarea, [tabindex]');
54
+ expect(firstCardControls).toHaveLength(0);
55
+
56
+ const accentedDisabledCard = await DSCardV3CO.getCardContainerByIndex(1);
57
+ const secondCardControls = await accentedDisabledCard.$$('button, a[href], input, select, textarea, [tabindex]');
58
+ expect(secondCardControls).toHaveLength(0);
59
+ });
60
+ });
61
+ }
@@ -0,0 +1,20 @@
1
+ import DSCardV3CO from '../DSCardV3CO';
2
+
3
+ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
4
+ describe('PUI-18811 - DSCardV3:: variant disabled and accented-disabled render - Visual', () => {
5
+ before('loading page', async () => {
6
+ const errorOnGo = await DSCardV3CO.variantDisabledURL.go();
7
+ if (errorOnGo) throw errorOnGo;
8
+ });
9
+
10
+ it('01: should display the disabled and accented-disabled cards', async () => {
11
+ const disabledCard = await DSCardV3CO.getCardContainerByIndex(0);
12
+ await disabledCard.waitForDisplayed();
13
+ const accentedDisabledCard = await DSCardV3CO.getCardContainerByIndex(1);
14
+ await expect(accentedDisabledCard).toBeDisplayed();
15
+
16
+ const snapshot = await browser.percyCheckScreenshot();
17
+ await expect(snapshot).toEqual(0);
18
+ });
19
+ });
20
+ }
@@ -9,7 +9,7 @@ if (
9
9
  // Tests for the fix introduced in PUI-17888 (disabled attribute on non-interactive card)
10
10
  describe('PUI-18598 - DSCardV3:: disabled variant has no HTML disabled attribute - Func', () => {
11
11
  before('loading page', async () => {
12
- const errorOnGo = await DSCardV3CO.disabledURL.go();
12
+ const errorOnGo = await DSCardV3CO.variantDisabledURL.go();
13
13
  if (errorOnGo) throw errorOnGo;
14
14
  });
15
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "dimsum-e2e-tests",
4
- "version": "3.70.0-next.52",
4
+ "version": "3.70.0-next.54",
5
5
  "description": "End-to-end tests for dimsum library",
6
6
  "dependencies": {
7
7
  "@elliemae/ds-legacy-button": "1.0.16",
@@ -38,154 +38,154 @@
38
38
  "@elliemae/ds-legacy-wysiwygeditor": "1.0.16",
39
39
  "@elliemae/ds-legacy-zipcode-search": "1.0.16",
40
40
  "@elliemae/ds-legacy-zoom": "1.0.16",
41
- "@elliemae/ds-app-picker": "3.70.0-next.52",
42
- "@elliemae/ds-accessibility": "3.70.0-next.52",
43
- "@elliemae/ds-banner": "3.70.0-next.52",
44
- "@elliemae/ds-basic": "3.70.0-next.52",
45
- "@elliemae/ds-accordion": "3.70.0-next.52",
46
- "@elliemae/ds-backdrop": "3.70.0-next.52",
47
- "@elliemae/ds-breadcrumb": "3.70.0-next.52",
48
- "@elliemae/ds-button-v2": "3.70.0-next.52",
49
- "@elliemae/ds-card": "3.70.0-next.52",
50
- "@elliemae/ds-card-v1": "3.70.0-next.52",
51
- "@elliemae/ds-card-navigation": "3.70.0-next.52",
52
- "@elliemae/ds-card-v1-detail": "3.70.0-next.52",
53
- "@elliemae/ds-card-v2": "3.70.0-next.52",
54
- "@elliemae/ds-card-v2-group": "3.70.0-next.52",
55
- "@elliemae/ds-card-v2-action-addon": "3.70.0-next.52",
56
- "@elliemae/ds-chat": "3.70.0-next.52",
57
- "@elliemae/ds-card-v3": "3.70.0-next.52",
58
- "@elliemae/ds-chat-bubble": "3.70.0-next.52",
59
- "@elliemae/ds-chat-card": "3.70.0-next.52",
60
- "@elliemae/ds-card-v3-poc": "3.70.0-next.52",
61
- "@elliemae/ds-chat-container-header": "3.70.0-next.52",
62
- "@elliemae/ds-chat-container": "3.70.0-next.52",
63
- "@elliemae/ds-chat-empty-state": "3.70.0-next.52",
64
- "@elliemae/ds-chat-floating-button": "3.70.0-next.52",
65
- "@elliemae/ds-chat-sidebar": "3.70.0-next.52",
66
- "@elliemae/ds-chat-system-message": "3.70.0-next.52",
67
- "@elliemae/ds-chat-tile": "3.70.0-next.52",
68
- "@elliemae/ds-chip": "3.70.0-next.52",
69
- "@elliemae/ds-circular-progress-indicator": "3.70.0-next.52",
70
- "@elliemae/ds-chat-message-delimeter": "3.70.0-next.52",
71
- "@elliemae/ds-classnames": "3.70.0-next.52",
72
- "@elliemae/ds-comments": "3.70.0-next.52",
73
- "@elliemae/ds-csv-converter": "3.70.0-next.52",
74
- "@elliemae/ds-codeeditor": "3.70.0-next.52",
75
- "@elliemae/ds-controlled-form": "3.70.0-next.52",
76
- "@elliemae/ds-data-table": "3.70.0-next.52",
77
- "@elliemae/ds-data-table-cell": "3.70.0-next.52",
78
- "@elliemae/ds-data-table-action-cell": "3.70.0-next.52",
79
- "@elliemae/ds-data-table-cell-header": "3.70.0-next.52",
80
- "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.52",
81
- "@elliemae/ds-data-table-expand-cell": "3.70.0-next.52",
82
- "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.52",
83
- "@elliemae/ds-data-table-filters": "3.70.0-next.52",
84
- "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.52",
85
- "@elliemae/ds-dataviz-pie": "3.70.0-next.52",
86
- "@elliemae/ds-dataviz": "3.70.0-next.52",
87
- "@elliemae/ds-date-time-picker": "3.70.0-next.52",
88
- "@elliemae/ds-decision-graph": "3.70.0-next.52",
89
- "@elliemae/ds-dialog": "3.70.0-next.52",
90
- "@elliemae/ds-drag-and-drop": "3.70.0-next.52",
91
- "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.52",
92
- "@elliemae/ds-filter-bar": "3.70.0-next.52",
93
- "@elliemae/ds-fast-list": "3.70.0-next.52",
94
- "@elliemae/ds-dropzone": "3.70.0-next.52",
95
- "@elliemae/ds-floating-context": "3.70.0-next.52",
96
- "@elliemae/ds-form-combobox": "3.70.0-next.52",
97
- "@elliemae/ds-form-date-range-picker": "3.70.0-next.52",
98
- "@elliemae/ds-form-date-time-picker": "3.70.0-next.52",
99
- "@elliemae/ds-form-checkbox": "3.70.0-next.52",
100
- "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.52",
101
- "@elliemae/ds-form-input-text": "3.70.0-next.52",
102
- "@elliemae/ds-form-input-textarea": "3.70.0-next.52",
103
- "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.52",
104
- "@elliemae/ds-form-layout-blocks": "3.70.0-next.52",
105
- "@elliemae/ds-form-layout-input-group": "3.70.0-next.52",
106
- "@elliemae/ds-form-native-select": "3.70.0-next.52",
107
- "@elliemae/ds-form-layout-label": "3.70.0-next.52",
108
- "@elliemae/ds-form-multi-combobox": "3.70.0-next.52",
109
- "@elliemae/ds-form-radio": "3.70.0-next.52",
110
- "@elliemae/ds-form-single-combobox": "3.70.0-next.52",
111
- "@elliemae/ds-form-toggle": "3.70.0-next.52",
112
- "@elliemae/ds-form-select": "3.70.0-next.52",
113
- "@elliemae/ds-global-header": "3.70.0-next.52",
114
- "@elliemae/ds-grid": "3.70.0-next.52",
115
- "@elliemae/ds-hooks-focus-stack": "3.70.0-next.52",
116
- "@elliemae/ds-hooks-focus-trap": "3.70.0-next.52",
117
- "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.52",
118
- "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.52",
119
- "@elliemae/ds-hooks-is-mobile": "3.70.0-next.52",
120
- "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.52",
121
- "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.52",
122
- "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.52",
123
- "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.52",
124
- "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.52",
125
- "@elliemae/ds-icon": "3.70.0-next.52",
126
- "@elliemae/ds-icons": "3.70.0-next.52",
127
- "@elliemae/ds-image": "3.70.0-next.52",
128
- "@elliemae/ds-imagelibrarymodal": "3.70.0-next.52",
129
- "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.52",
130
- "@elliemae/ds-left-navigation": "3.70.0-next.52",
131
- "@elliemae/ds-layout-provider": "3.70.0-next.52",
132
- "@elliemae/ds-loading-indicator": "3.70.0-next.52",
133
- "@elliemae/ds-menu-button": "3.70.0-next.52",
134
- "@elliemae/ds-menu-items": "3.70.0-next.52",
135
- "@elliemae/ds-menu-items-action": "3.70.0-next.52",
136
- "@elliemae/ds-menu-items-multi": "3.70.0-next.52",
137
- "@elliemae/ds-menu-items-section": "3.70.0-next.52",
138
- "@elliemae/ds-menu-items-single": "3.70.0-next.52",
139
- "@elliemae/ds-menu-items-commons": "3.70.0-next.52",
140
- "@elliemae/ds-menu-items-separator": "3.70.0-next.52",
141
- "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.52",
142
- "@elliemae/ds-menu-items-skeleton": "3.70.0-next.52",
143
- "@elliemae/ds-menu-items-submenu": "3.70.0-next.52",
144
- "@elliemae/ds-menu-tree-item": "3.70.0-next.52",
145
- "@elliemae/ds-mobile": "3.70.0-next.52",
146
- "@elliemae/ds-modal-slide": "3.70.0-next.52",
147
- "@elliemae/ds-overlay": "3.70.0-next.52",
148
- "@elliemae/ds-notification-badge": "3.70.0-next.52",
149
- "@elliemae/ds-page-header": "3.70.0-next.52",
150
- "@elliemae/ds-page-header-v1": "3.70.0-next.52",
151
- "@elliemae/ds-pagination": "3.70.0-next.52",
152
- "@elliemae/ds-page-header-v2": "3.70.0-next.52",
153
- "@elliemae/ds-page-layout": "3.70.0-next.52",
154
- "@elliemae/ds-pills-v2": "3.70.0-next.52",
155
- "@elliemae/ds-portal": "3.70.0-next.52",
156
- "@elliemae/ds-progress-indicator": "3.70.0-next.52",
157
- "@elliemae/ds-props-helpers": "3.70.0-next.52",
158
- "@elliemae/ds-query-builder": "3.70.0-next.52",
159
- "@elliemae/ds-read-more": "3.70.0-next.52",
160
- "@elliemae/ds-ribbon": "3.70.0-next.52",
161
- "@elliemae/ds-resizeable-container": "3.70.0-next.52",
162
- "@elliemae/ds-scrollable-container": "3.70.0-next.52",
163
- "@elliemae/ds-separator": "3.70.0-next.52",
164
- "@elliemae/ds-shared": "3.70.0-next.52",
165
- "@elliemae/ds-shuttle-v2": "3.70.0-next.52",
166
- "@elliemae/ds-side-panel": "3.70.0-next.52",
167
- "@elliemae/ds-side-panel-header": "3.70.0-next.52",
168
- "@elliemae/ds-skeleton": "3.70.0-next.52",
169
- "@elliemae/ds-slider-v2": "3.70.0-next.52",
170
- "@elliemae/ds-square-indicator": "3.70.0-next.52",
171
- "@elliemae/ds-stepper": "3.70.0-next.52",
172
- "@elliemae/ds-svg": "3.70.0-next.52",
173
- "@elliemae/ds-system": "3.70.0-next.52",
174
- "@elliemae/ds-tabs": "3.70.0-next.52",
175
- "@elliemae/ds-toast": "3.70.0-next.52",
176
- "@elliemae/ds-toolbar-v1": "3.70.0-next.52",
177
- "@elliemae/ds-transition": "3.70.0-next.52",
178
- "@elliemae/ds-test-utils": "3.70.0-next.52",
179
- "@elliemae/ds-tooltip-v3": "3.70.0-next.52",
180
- "@elliemae/ds-tree-model": "3.70.0-next.52",
181
- "@elliemae/ds-toolbar-v2": "3.70.0-next.52",
182
- "@elliemae/ds-truncated-expandable-text": "3.70.0-next.52",
183
- "@elliemae/ds-treeview": "3.70.0-next.52",
184
- "@elliemae/ds-typescript-helpers": "3.70.0-next.52",
185
- "@elliemae/ds-virtual-list": "3.70.0-next.52",
186
- "@elliemae/ds-wizard": "3.70.0-next.52",
187
- "@elliemae/ds-typography": "3.70.0-next.52",
188
- "@elliemae/ds-zustand-helpers": "3.70.0-next.52"
41
+ "@elliemae/ds-accessibility": "3.70.0-next.54",
42
+ "@elliemae/ds-backdrop": "3.70.0-next.54",
43
+ "@elliemae/ds-app-picker": "3.70.0-next.54",
44
+ "@elliemae/ds-banner": "3.70.0-next.54",
45
+ "@elliemae/ds-basic": "3.70.0-next.54",
46
+ "@elliemae/ds-breadcrumb": "3.70.0-next.54",
47
+ "@elliemae/ds-button-v2": "3.70.0-next.54",
48
+ "@elliemae/ds-accordion": "3.70.0-next.54",
49
+ "@elliemae/ds-card-navigation": "3.70.0-next.54",
50
+ "@elliemae/ds-card": "3.70.0-next.54",
51
+ "@elliemae/ds-card-v1": "3.70.0-next.54",
52
+ "@elliemae/ds-card-v1-detail": "3.70.0-next.54",
53
+ "@elliemae/ds-card-v2": "3.70.0-next.54",
54
+ "@elliemae/ds-card-v2-action-addon": "3.70.0-next.54",
55
+ "@elliemae/ds-card-v2-group": "3.70.0-next.54",
56
+ "@elliemae/ds-card-v3": "3.70.0-next.54",
57
+ "@elliemae/ds-card-v3-poc": "3.70.0-next.54",
58
+ "@elliemae/ds-chat": "3.70.0-next.54",
59
+ "@elliemae/ds-chat-bubble": "3.70.0-next.54",
60
+ "@elliemae/ds-chat-container-header": "3.70.0-next.54",
61
+ "@elliemae/ds-chat-card": "3.70.0-next.54",
62
+ "@elliemae/ds-chat-container": "3.70.0-next.54",
63
+ "@elliemae/ds-chat-empty-state": "3.70.0-next.54",
64
+ "@elliemae/ds-chat-message-delimeter": "3.70.0-next.54",
65
+ "@elliemae/ds-chat-sidebar": "3.70.0-next.54",
66
+ "@elliemae/ds-chat-floating-button": "3.70.0-next.54",
67
+ "@elliemae/ds-chat-system-message": "3.70.0-next.54",
68
+ "@elliemae/ds-chat-tile": "3.70.0-next.54",
69
+ "@elliemae/ds-circular-progress-indicator": "3.70.0-next.54",
70
+ "@elliemae/ds-chip": "3.70.0-next.54",
71
+ "@elliemae/ds-classnames": "3.70.0-next.54",
72
+ "@elliemae/ds-codeeditor": "3.70.0-next.54",
73
+ "@elliemae/ds-comments": "3.70.0-next.54",
74
+ "@elliemae/ds-controlled-form": "3.70.0-next.54",
75
+ "@elliemae/ds-csv-converter": "3.70.0-next.54",
76
+ "@elliemae/ds-data-table": "3.70.0-next.54",
77
+ "@elliemae/ds-data-table-cell": "3.70.0-next.54",
78
+ "@elliemae/ds-data-table-cell-header": "3.70.0-next.54",
79
+ "@elliemae/ds-data-table-drag-and-drop-cell": "3.70.0-next.54",
80
+ "@elliemae/ds-data-table-action-cell": "3.70.0-next.54",
81
+ "@elliemae/ds-data-table-expand-cell": "3.70.0-next.54",
82
+ "@elliemae/ds-data-table-filters": "3.70.0-next.54",
83
+ "@elliemae/ds-data-table-multi-select-cell": "3.70.0-next.54",
84
+ "@elliemae/ds-data-table-single-select-cell": "3.70.0-next.54",
85
+ "@elliemae/ds-dataviz": "3.70.0-next.54",
86
+ "@elliemae/ds-dataviz-pie": "3.70.0-next.54",
87
+ "@elliemae/ds-date-time-picker": "3.70.0-next.54",
88
+ "@elliemae/ds-decision-graph": "3.70.0-next.54",
89
+ "@elliemae/ds-dialog": "3.70.0-next.54",
90
+ "@elliemae/ds-drag-and-drop": "3.70.0-next.54",
91
+ "@elliemae/ds-dropdownmenu-v2": "3.70.0-next.54",
92
+ "@elliemae/ds-dropzone": "3.70.0-next.54",
93
+ "@elliemae/ds-fast-list": "3.70.0-next.54",
94
+ "@elliemae/ds-filter-bar": "3.70.0-next.54",
95
+ "@elliemae/ds-form-checkbox": "3.70.0-next.54",
96
+ "@elliemae/ds-floating-context": "3.70.0-next.54",
97
+ "@elliemae/ds-form-combobox": "3.70.0-next.54",
98
+ "@elliemae/ds-form-date-range-picker": "3.70.0-next.54",
99
+ "@elliemae/ds-form-helpers-mask-hooks": "3.70.0-next.54",
100
+ "@elliemae/ds-form-input-text": "3.70.0-next.54",
101
+ "@elliemae/ds-form-date-time-picker": "3.70.0-next.54",
102
+ "@elliemae/ds-form-input-textarea": "3.70.0-next.54",
103
+ "@elliemae/ds-form-layout-autocomplete": "3.70.0-next.54",
104
+ "@elliemae/ds-form-layout-input-group": "3.70.0-next.54",
105
+ "@elliemae/ds-form-layout-blocks": "3.70.0-next.54",
106
+ "@elliemae/ds-form-layout-label": "3.70.0-next.54",
107
+ "@elliemae/ds-form-native-select": "3.70.0-next.54",
108
+ "@elliemae/ds-form-multi-combobox": "3.70.0-next.54",
109
+ "@elliemae/ds-form-radio": "3.70.0-next.54",
110
+ "@elliemae/ds-form-toggle": "3.70.0-next.54",
111
+ "@elliemae/ds-form-single-combobox": "3.70.0-next.54",
112
+ "@elliemae/ds-form-select": "3.70.0-next.54",
113
+ "@elliemae/ds-global-header": "3.70.0-next.54",
114
+ "@elliemae/ds-grid": "3.70.0-next.54",
115
+ "@elliemae/ds-hooks-focus-trap": "3.70.0-next.54",
116
+ "@elliemae/ds-hooks-focus-stack": "3.70.0-next.54",
117
+ "@elliemae/ds-hooks-fontsize-detector": "3.70.0-next.54",
118
+ "@elliemae/ds-hooks-headless-tooltip": "3.70.0-next.54",
119
+ "@elliemae/ds-hooks-fontsize-media": "3.70.0-next.54",
120
+ "@elliemae/ds-hooks-is-showing-ellipsis": "3.70.0-next.54",
121
+ "@elliemae/ds-hooks-is-mobile": "3.70.0-next.54",
122
+ "@elliemae/ds-hooks-on-blur-out": "3.70.0-next.54",
123
+ "@elliemae/ds-hooks-keyboard-navigation": "3.70.0-next.54",
124
+ "@elliemae/ds-icon": "3.70.0-next.54",
125
+ "@elliemae/ds-image": "3.70.0-next.54",
126
+ "@elliemae/ds-hooks-on-first-focus-in": "3.70.0-next.54",
127
+ "@elliemae/ds-icons": "3.70.0-next.54",
128
+ "@elliemae/ds-imagelibrarymodal": "3.70.0-next.54",
129
+ "@elliemae/ds-indeterminate-progress-indicator": "3.70.0-next.54",
130
+ "@elliemae/ds-layout-provider": "3.70.0-next.54",
131
+ "@elliemae/ds-left-navigation": "3.70.0-next.54",
132
+ "@elliemae/ds-loading-indicator": "3.70.0-next.54",
133
+ "@elliemae/ds-menu-button": "3.70.0-next.54",
134
+ "@elliemae/ds-menu-items": "3.70.0-next.54",
135
+ "@elliemae/ds-menu-items-action": "3.70.0-next.54",
136
+ "@elliemae/ds-menu-items-commons": "3.70.0-next.54",
137
+ "@elliemae/ds-menu-items-multi": "3.70.0-next.54",
138
+ "@elliemae/ds-menu-items-section": "3.70.0-next.54",
139
+ "@elliemae/ds-menu-items-separator": "3.70.0-next.54",
140
+ "@elliemae/ds-menu-items-single-with-submenu": "3.70.0-next.54",
141
+ "@elliemae/ds-menu-items-skeleton": "3.70.0-next.54",
142
+ "@elliemae/ds-menu-items-single": "3.70.0-next.54",
143
+ "@elliemae/ds-menu-tree-item": "3.70.0-next.54",
144
+ "@elliemae/ds-menu-items-submenu": "3.70.0-next.54",
145
+ "@elliemae/ds-mobile": "3.70.0-next.54",
146
+ "@elliemae/ds-modal-slide": "3.70.0-next.54",
147
+ "@elliemae/ds-notification-badge": "3.70.0-next.54",
148
+ "@elliemae/ds-overlay": "3.70.0-next.54",
149
+ "@elliemae/ds-page-header": "3.70.0-next.54",
150
+ "@elliemae/ds-page-header-v1": "3.70.0-next.54",
151
+ "@elliemae/ds-page-header-v2": "3.70.0-next.54",
152
+ "@elliemae/ds-page-layout": "3.70.0-next.54",
153
+ "@elliemae/ds-portal": "3.70.0-next.54",
154
+ "@elliemae/ds-pagination": "3.70.0-next.54",
155
+ "@elliemae/ds-progress-indicator": "3.70.0-next.54",
156
+ "@elliemae/ds-pills-v2": "3.70.0-next.54",
157
+ "@elliemae/ds-props-helpers": "3.70.0-next.54",
158
+ "@elliemae/ds-query-builder": "3.70.0-next.54",
159
+ "@elliemae/ds-read-more": "3.70.0-next.54",
160
+ "@elliemae/ds-resizeable-container": "3.70.0-next.54",
161
+ "@elliemae/ds-ribbon": "3.70.0-next.54",
162
+ "@elliemae/ds-scrollable-container": "3.70.0-next.54",
163
+ "@elliemae/ds-separator": "3.70.0-next.54",
164
+ "@elliemae/ds-shared": "3.70.0-next.54",
165
+ "@elliemae/ds-side-panel": "3.70.0-next.54",
166
+ "@elliemae/ds-shuttle-v2": "3.70.0-next.54",
167
+ "@elliemae/ds-side-panel-header": "3.70.0-next.54",
168
+ "@elliemae/ds-skeleton": "3.70.0-next.54",
169
+ "@elliemae/ds-slider-v2": "3.70.0-next.54",
170
+ "@elliemae/ds-square-indicator": "3.70.0-next.54",
171
+ "@elliemae/ds-stepper": "3.70.0-next.54",
172
+ "@elliemae/ds-system": "3.70.0-next.54",
173
+ "@elliemae/ds-svg": "3.70.0-next.54",
174
+ "@elliemae/ds-tabs": "3.70.0-next.54",
175
+ "@elliemae/ds-test-utils": "3.70.0-next.54",
176
+ "@elliemae/ds-toast": "3.70.0-next.54",
177
+ "@elliemae/ds-toolbar-v1": "3.70.0-next.54",
178
+ "@elliemae/ds-toolbar-v2": "3.70.0-next.54",
179
+ "@elliemae/ds-transition": "3.70.0-next.54",
180
+ "@elliemae/ds-tooltip-v3": "3.70.0-next.54",
181
+ "@elliemae/ds-tree-model": "3.70.0-next.54",
182
+ "@elliemae/ds-treeview": "3.70.0-next.54",
183
+ "@elliemae/ds-typescript-helpers": "3.70.0-next.54",
184
+ "@elliemae/ds-truncated-expandable-text": "3.70.0-next.54",
185
+ "@elliemae/ds-typography": "3.70.0-next.54",
186
+ "@elliemae/ds-virtual-list": "3.70.0-next.54",
187
+ "@elliemae/ds-wizard": "3.70.0-next.54",
188
+ "@elliemae/ds-zustand-helpers": "3.70.0-next.54"
189
189
  },
190
190
  "publishConfig": {
191
191
  "access": "public"
@@ -1,16 +0,0 @@
1
- import DSCardV3CO from '../DSCardV3CO';
2
-
3
- if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
4
- describe('PUI-13956 - CardV3: Disabled -Visual Test', () => {
5
- before('loading page', async () => {
6
- const errorOnGo = await DSCardV3CO.disabledURL.go();
7
- if (errorOnGo) throw errorOnGo;
8
- });
9
- it('01: should display disabled cards (standard and accented)', async () => {
10
- const cardContainer = await DSCardV3CO.getCardContainerByIndex(0);
11
- await cardContainer.waitForDisplayed();
12
- const snapshot = await browser.percyCheckScreenshot();
13
- await expect(snapshot).toEqual(0);
14
- });
15
- });
16
- }