dimsum-e2e-tests 3.29.2-rc.0 → 3.30.0-next.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.
- package/CHANGELOG.md +65 -75
- package/ds-button-v3/DSButtonV3CO.js +1 -1
- package/ds-chat/DSChat.axe-core.func.spec.js +104 -0
- package/ds-chat/{DSChat-bubble.axe-core.func.spec.js → bubbles/DSChat-bubble.axe-core.func.spec.js} +10 -6
- package/ds-chat/{DSChat-bubble.visual.spec.js → bubbles/DSChat-bubble.visual.spec.js} +1 -1
- package/ds-chat/components/FloatingButtonCO.js +3 -1
- package/ds-chat/composer/DSChat-composer.axe-core.func.spec.js +34 -0
- package/ds-chat/{DSChat-composer.func.spec.js → composer/DSChat-composer.func.spec.js} +2 -2
- package/ds-chat/{DSChat-composer.visual.spec.js → composer/DSChat-composer.visual.spec.js} +2 -2
- package/ds-chat/{DSChat-container.func.spec.js → container/DSChat-container.func.spec.js} +4 -4
- package/ds-chat/floatingbutton/DSChat-floating-button.axe-core.func.spec.js +28 -0
- package/ds-chat/{DSChat-floating-button.visual.spec.js → floatingbutton/DSChat-floating-button.visual.spec.js} +2 -2
- package/ds-chat/header/DSChat-header.axe-core.func.spec.js +28 -0
- package/ds-chat/{DSChat-header.func.spec.js → header/DSChat-header.func.spec.js} +1 -1
- package/ds-chat/{DSChat-header.visual.spec.js → header/DSChat-header.visual.spec.js} +1 -1
- package/ds-chat/loadmore/DSChat-loadmore.axe-core.func.spec.js +31 -0
- package/ds-chat/{DSChat-loadmore.func.spec.js → loadmore/DSChat-loadmore.func.spec.js} +2 -2
- package/ds-chat/{DSChat-loadmore.visual.spec.js → loadmore/DSChat-loadmore.visual.spec.js} +1 -1
- package/ds-chat/tooltip/DSChat-tooltip.axe-core.func.spec.js +23 -0
- package/ds-chat/{DSChat-tooltip.visual.spec.js → tooltip/DSChat-tooltip.visual.spec.js} +3 -3
- package/ds-hooks/useKeyboardNavigation/DSHook.useKeyboardNavigation.func.spec.js +144 -0
- package/ds-hooks/useKeyboardNavigation/UseKeyboardNavigationCO.js +33 -0
- package/ds-system/DSSystem.visual.spec.js +19 -0
- package/ds-system/DSSystemCO.js +15 -0
- package/ds-virtuallist/DSVirtualList.visual.spec.js +13 -0
- package/ds-virtuallist/DSVirtualListCO.js +11 -1
- package/package.json +119 -119
- package/zzz-eol/ds-group-box/DSGroupBox.axe-core.func.spec.js +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Key } from 'webdriverio';
|
|
2
|
-
import { HeaderCO } from '
|
|
2
|
+
import { HeaderCO } from '../components';
|
|
3
3
|
|
|
4
4
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
5
5
|
describe('PUI-6688 - Chat, Header, Keyboard Navigation', () => {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import DSChatCO from '../DSChatCO';
|
|
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-12501 - Chat, Load More, - AxeCore', () => {
|
|
11
|
+
beforeEach('loading page', async () => {
|
|
12
|
+
const errorOnGo = await DSChatCO.loadMoreURL.go();
|
|
13
|
+
if (errorOnGo) throw errorOnGo;
|
|
14
|
+
});
|
|
15
|
+
it('01: should have a chat with loadMore and pass axe-core scan', async () => {
|
|
16
|
+
const loadMoreBtn = await DSChatCO.getLoadMoreBtn();
|
|
17
|
+
await loadMoreBtn.scrollIntoView();
|
|
18
|
+
const result = await axeCoreCheck();
|
|
19
|
+
expect(result.length).toBe(0);
|
|
20
|
+
});
|
|
21
|
+
it('02: should have a chat with loadMore and new loaded messages and pass axe-core scan', async () => {
|
|
22
|
+
const loadMoreBtn = await DSChatCO.getLoadMoreBtn();
|
|
23
|
+
await loadMoreBtn.click();
|
|
24
|
+
// eslint-disable-next-line wdio/no-pause
|
|
25
|
+
await browser.pause(2000);
|
|
26
|
+
await loadMoreBtn.scrollIntoView();
|
|
27
|
+
const result = await axeCoreCheck();
|
|
28
|
+
expect(result.length).toBe(0);
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Key } from 'webdriverio';
|
|
2
|
-
import { BubbleCO, ComposerCO, FloatingButtonCO } from '
|
|
3
|
-
import DSChatCO from '
|
|
2
|
+
import { BubbleCO, ComposerCO, FloatingButtonCO } from '../components';
|
|
3
|
+
import DSChatCO from '../DSChatCO';
|
|
4
4
|
|
|
5
5
|
if (!browser.capabilities['ice:options'].isPhone) {
|
|
6
6
|
describe('PUI-7695 - Chat, Load More, - Func. Tests', () => {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* eslint-disable wdio/no-pause */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import { TileCO } from '../components';
|
|
4
|
+
import DSChatCO from '../DSChatCO';
|
|
5
|
+
import { axeCoreCheck } from '../../helpers';
|
|
6
|
+
|
|
7
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
|
+
describe('PUI-12522 - Chat, Tooltip, AxeCore', () => {
|
|
9
|
+
before('loading page', async () => {
|
|
10
|
+
const errorOnGo = await DSChatCO.tooltipPosition.go();
|
|
11
|
+
if (errorOnGo) throw errorOnGo;
|
|
12
|
+
});
|
|
13
|
+
it('should have a chat with tooltip and pass axe-core scan', async () => {
|
|
14
|
+
const toolbarBtn = await DSChatCO.getToogleBtn();
|
|
15
|
+
await toolbarBtn.click();
|
|
16
|
+
await browser.pause(500);
|
|
17
|
+
await browser.keys(Key.Tab);
|
|
18
|
+
await (await TileCO.getTileTooltip('header')).waitForDisplayed();
|
|
19
|
+
const result = await axeCoreCheck();
|
|
20
|
+
expect(result.length).toBe(0);
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-disable wdio/no-pause */
|
|
2
2
|
import { Key } from 'webdriverio';
|
|
3
|
-
import { TileCO } from '
|
|
4
|
-
import DSChatCO from '
|
|
5
|
-
import { mouseOver } from '
|
|
3
|
+
import { TileCO } from '../components';
|
|
4
|
+
import DSChatCO from '../DSChatCO';
|
|
5
|
+
import { mouseOver } from '../../helpers';
|
|
6
6
|
|
|
7
7
|
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
8
8
|
describe('PUI-7375 - Chat, Tooltip, Visual Tests', () => {
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
import { Key } from 'webdriverio';
|
|
3
|
+
import UseKeyboardNavCO from './useKeyboardNavigationCO';
|
|
4
|
+
import DSCardV3CO from '../../ds-card-v3/DSCardV3CO';
|
|
5
|
+
import DSButtonV3CO from '../../ds-button-v3/DSButtonV3CO';
|
|
6
|
+
import DSMenuItemsCO from '../../ds-menu-item/DSMenuItemsCO';
|
|
7
|
+
import { tabStops } from '../../helpers';
|
|
8
|
+
|
|
9
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
10
|
+
describe('PUI-12538 [useKeyboardNav] Card Select:: DisableRoving true + agnostic direction', () => {
|
|
11
|
+
before(async () => {
|
|
12
|
+
const errorOnGo = await UseKeyboardNavCO.cardSelect.go();
|
|
13
|
+
if (errorOnGo) throw errorOnGo;
|
|
14
|
+
});
|
|
15
|
+
it('01: should focus on the 4th card after 3 tab stops', async () => {
|
|
16
|
+
await tabStops(3);
|
|
17
|
+
const card4 = await DSCardV3CO.getActionAreaByIndex(3);
|
|
18
|
+
await expect(card4).toBeFocused();
|
|
19
|
+
});
|
|
20
|
+
it('02: should focus on the 2nd card after moving up with ArrowUp', async () => {
|
|
21
|
+
await browser.keys(Key.ArrowUp);
|
|
22
|
+
const card2 = await DSCardV3CO.getActionAreaByIndex(1);
|
|
23
|
+
await expect(card2).toBeFocused();
|
|
24
|
+
});
|
|
25
|
+
it('03: should focus on the 1st card after moving up with ArrowLeft', async () => {
|
|
26
|
+
await browser.keys(Key.ArrowLeft);
|
|
27
|
+
const card1 = await DSCardV3CO.getActionAreaByIndex(0);
|
|
28
|
+
await expect(card1).toBeFocused();
|
|
29
|
+
});
|
|
30
|
+
it('04: should focus on the 2nd card after moving down with ArrowDown', async () => {
|
|
31
|
+
await browser.keys(Key.ArrowDown);
|
|
32
|
+
const card2 = await DSCardV3CO.getActionAreaByIndex(1);
|
|
33
|
+
await expect(card2).toBeFocused();
|
|
34
|
+
});
|
|
35
|
+
it('05: should focus on the 4th card after moving down with ArrowRight', async () => {
|
|
36
|
+
await browser.keys(Key.ArrowRight);
|
|
37
|
+
const card4 = await DSCardV3CO.getActionAreaByIndex(3);
|
|
38
|
+
await expect(card4).toBeFocused();
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
describe('PUI-12539 [useKeyboardNav] disabledRovingTab:: DisableRoving true + horizontal direction', () => {
|
|
42
|
+
before(async () => {
|
|
43
|
+
const errorOnGo = await UseKeyboardNavCO.disabledRovingTab.go();
|
|
44
|
+
if (errorOnGo) throw errorOnGo;
|
|
45
|
+
});
|
|
46
|
+
it('01: should focus on 4th item after 3 tab stops', async () => {
|
|
47
|
+
await tabStops(3);
|
|
48
|
+
const item4 = await DSButtonV3CO.getButtonByIndex(3);
|
|
49
|
+
await expect(item4).toBeFocused();
|
|
50
|
+
});
|
|
51
|
+
it('02: should not move to the previous item when using ArrowUp', async () => {
|
|
52
|
+
await browser.keys(Key.ArrowUp);
|
|
53
|
+
const item4 = await DSButtonV3CO.getButtonByIndex(3);
|
|
54
|
+
await expect(item4).toBeFocused();
|
|
55
|
+
});
|
|
56
|
+
it('03: should focus on the 2nd item after moving to the previous item using ArrowLeft', async () => {
|
|
57
|
+
await browser.keys(Key.ArrowLeft);
|
|
58
|
+
const item2 = await DSButtonV3CO.getButtonByIndex(1);
|
|
59
|
+
await expect(item2).toBeFocused();
|
|
60
|
+
});
|
|
61
|
+
it('04: should not move to the next item when using ArrowDown', async () => {
|
|
62
|
+
await browser.keys(Key.ArrowDown);
|
|
63
|
+
const item2 = await DSButtonV3CO.getButtonByIndex(1);
|
|
64
|
+
await expect(item2).toBeFocused();
|
|
65
|
+
});
|
|
66
|
+
it('05: should focus on the 4th item after moving to the next item using ArrowRight', async () => {
|
|
67
|
+
await browser.keys(Key.ArrowRight);
|
|
68
|
+
const item4 = await DSButtonV3CO.getButtonByIndex(3);
|
|
69
|
+
await expect(item4).toBeFocused();
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
describe('PUI-12540 [useKeyboardNav] focusCriteria:: DisableRoving false + vertical direction', () => {
|
|
73
|
+
before(async () => {
|
|
74
|
+
const errorOnGo = await UseKeyboardNavCO.focusCriteria.go();
|
|
75
|
+
if (errorOnGo) throw errorOnGo;
|
|
76
|
+
});
|
|
77
|
+
it('01: should focus on the inputText after 2 tab stops', async () => {
|
|
78
|
+
await tabStops(2);
|
|
79
|
+
const inputText = await UseKeyboardNavCO.getInputText();
|
|
80
|
+
await expect(inputText).toBeFocused();
|
|
81
|
+
});
|
|
82
|
+
it('02: should focus on the first item after Shift+Tab', async () => {
|
|
83
|
+
await browser.keys([Key.Shift, Key.Tab]);
|
|
84
|
+
const item1 = await DSButtonV3CO.getButtonByIndex(0);
|
|
85
|
+
await expect(item1).toBeFocused();
|
|
86
|
+
});
|
|
87
|
+
it('03: should move to the next item when using ArrowDown', async () => {
|
|
88
|
+
await browser.keys(Key.ArrowDown);
|
|
89
|
+
const item3 = await DSButtonV3CO.getButtonByIndex(2);
|
|
90
|
+
await expect(item3).toBeFocused();
|
|
91
|
+
});
|
|
92
|
+
it('04: should not focus on the next item when using ArrowRight', async () => {
|
|
93
|
+
await browser.keys(Key.ArrowRight);
|
|
94
|
+
const item3 = await DSButtonV3CO.getButtonByIndex(2);
|
|
95
|
+
await expect(item3).toBeFocused();
|
|
96
|
+
});
|
|
97
|
+
it('05: should not focus on the prev item when using ArrowLeft', async () => {
|
|
98
|
+
await browser.keys(Key.ArrowLeft);
|
|
99
|
+
const item3 = await DSButtonV3CO.getButtonByIndex(2);
|
|
100
|
+
await expect(item3).toBeFocused();
|
|
101
|
+
});
|
|
102
|
+
it('06: should move to the prev item when using ArrowUp', async () => {
|
|
103
|
+
await browser.keys(Key.ArrowUp);
|
|
104
|
+
const item1 = await DSButtonV3CO.getButtonByIndex(0);
|
|
105
|
+
await expect(item1).toBeFocused();
|
|
106
|
+
});
|
|
107
|
+
});
|
|
108
|
+
describe('PUI-12541 [useKeyboardNav] menuItems:: DisableRoving false + agnostic direction', () => {
|
|
109
|
+
before(async () => {
|
|
110
|
+
const errorOnGo = await UseKeyboardNavCO.menuItems.go();
|
|
111
|
+
if (errorOnGo) throw errorOnGo;
|
|
112
|
+
});
|
|
113
|
+
it('01: should focus on the inputText after 2 tab stops', async () => {
|
|
114
|
+
await tabStops(2);
|
|
115
|
+
const inputText = await UseKeyboardNavCO.getInputText();
|
|
116
|
+
await expect(inputText).toBeFocused();
|
|
117
|
+
});
|
|
118
|
+
it('02: should focus on the first item after Shift+Tab', async () => {
|
|
119
|
+
await browser.keys([Key.Shift, Key.Tab]);
|
|
120
|
+
const menuItem1 = await DSMenuItemsCO.getMenuItem('1');
|
|
121
|
+
await expect(menuItem1).toBeFocused();
|
|
122
|
+
});
|
|
123
|
+
it('03: should move to the prev item when using ArrowUp', async () => {
|
|
124
|
+
await browser.keys(Key.ArrowUp);
|
|
125
|
+
const menuItem4 = await DSMenuItemsCO.getMenuItem('4');
|
|
126
|
+
await expect(menuItem4).toBeFocused();
|
|
127
|
+
});
|
|
128
|
+
it('04: should move to the prev item when using ArrowLeft', async () => {
|
|
129
|
+
await browser.keys(Key.ArrowLeft);
|
|
130
|
+
const menuItem3 = await DSMenuItemsCO.getMenuItem('3');
|
|
131
|
+
await expect(menuItem3).toBeFocused();
|
|
132
|
+
});
|
|
133
|
+
it('05: should move to the next item when using ArrowRight', async () => {
|
|
134
|
+
await browser.keys(Key.ArrowRight);
|
|
135
|
+
const menuItem4 = await DSMenuItemsCO.getMenuItem('4');
|
|
136
|
+
await expect(menuItem4).toBeFocused();
|
|
137
|
+
});
|
|
138
|
+
it('06: should move to the next item when using ArrowDown', async () => {
|
|
139
|
+
await browser.keys(Key.ArrowDown);
|
|
140
|
+
const menuItem1 = await DSMenuItemsCO.getMenuItem('1');
|
|
141
|
+
await expect(menuItem1).toBeFocused();
|
|
142
|
+
});
|
|
143
|
+
});
|
|
144
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* eslint-disable import/no-relative-packages */
|
|
2
|
+
import { PATH_E2E_USE_KEYBOARD_NAVIGATION } from '../../../environments/storybook/paths';
|
|
3
|
+
import { PageObject, Urlbuilder, getElementByIndex } from '../../helpers';
|
|
4
|
+
|
|
5
|
+
export default class UseKeyboardNavCO extends PageObject {
|
|
6
|
+
// direction: agnostic -- disabledRoving: true -- focusCriteria: undefined
|
|
7
|
+
static cardSelect = new Urlbuilder(PATH_E2E_USE_KEYBOARD_NAVIGATION, 'card-select-test');
|
|
8
|
+
|
|
9
|
+
// direction: horizontal -- disabledRoving: true -- focusCriteria: defined
|
|
10
|
+
static disabledRovingTab = new Urlbuilder(PATH_E2E_USE_KEYBOARD_NAVIGATION, 'disable-roving-tab-index-test');
|
|
11
|
+
|
|
12
|
+
// direction: vertical -- disabledRoving: false -- focusCriteria: defined
|
|
13
|
+
static focusCriteria = new Urlbuilder(PATH_E2E_USE_KEYBOARD_NAVIGATION, 'focus-criteria-test');
|
|
14
|
+
|
|
15
|
+
// direction: agnostic -- disabledRoving: false -- focusCriteria: undefined
|
|
16
|
+
static menuItems = new Urlbuilder(PATH_E2E_USE_KEYBOARD_NAVIGATION, 'menu-items-test');
|
|
17
|
+
|
|
18
|
+
static async getBtns() {
|
|
19
|
+
return $$('[data-testid="ds-button"]');
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
static getBtnByIndex = async (index) => getElementByIndex(this.getBtns, index);
|
|
23
|
+
|
|
24
|
+
static async getInputText() {
|
|
25
|
+
return $('[data-testid="input-text"]');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// mostly used
|
|
29
|
+
static getInfo = async () => getElementByIndex(this.getH3s, 3);
|
|
30
|
+
|
|
31
|
+
// used for first focus in story
|
|
32
|
+
static getInfo2 = async () => getElementByIndex(this.getH3s, 4);
|
|
33
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import DSSystemCO from './DSSystemCO';
|
|
2
|
+
|
|
3
|
+
if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:options'].isTablet) {
|
|
4
|
+
describe('PUI-12550 [DSSystem] Html Elements - visual', () => {
|
|
5
|
+
before(async () => {
|
|
6
|
+
const errorOnGo = await DSSystemCO.htmlElements.go();
|
|
7
|
+
if (errorOnGo) throw errorOnGo;
|
|
8
|
+
});
|
|
9
|
+
it('01: should display stlyling of html elements correctly', async () => {
|
|
10
|
+
// This test also verifies the functionality of the `innerRef` prop.
|
|
11
|
+
// It confirms that the `innerRef` prop is correctly implemented by
|
|
12
|
+
// capturing and asserting the message "The Div element is successfully referenced."
|
|
13
|
+
const div = await DSSystemCO.getDiv();
|
|
14
|
+
await div.waitForDisplayed();
|
|
15
|
+
const snapshot = await browser.checkSnapshot(DSSystemCO.snapshotPath('html-elements-innerRef'));
|
|
16
|
+
await expect(snapshot).toEqual(0);
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PATH_E2E_SYSTEM } from '../../environments/storybook/paths';
|
|
2
|
+
import { PageObject, Urlbuilder } from '../helpers';
|
|
3
|
+
|
|
4
|
+
export default class DSSystemCO extends PageObject {
|
|
5
|
+
static htmlElements = new Urlbuilder(PATH_E2E_SYSTEM, 'html-elements-test');
|
|
6
|
+
|
|
7
|
+
static async getDiv() {
|
|
8
|
+
return $('//div[@data-testid="custom-data-testid"]');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// Snapshots
|
|
12
|
+
static snapshotPath(example = 'basic') {
|
|
13
|
+
return PageObject.getSnapshotPathBuilder('System', example, 'ds-system');
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -28,4 +28,17 @@ if (!browser.capabilities['ice:options'].isPhone && !browser.capabilities['ice:o
|
|
|
28
28
|
await expect(snapshot).toEqual(0);
|
|
29
29
|
});
|
|
30
30
|
});
|
|
31
|
+
describe('PUI-12426 - VirtualList, customization - visual test', () => {
|
|
32
|
+
before(async () => {
|
|
33
|
+
const errorOnGo = await DSVirtualListCO.customization.go();
|
|
34
|
+
if (errorOnGo) throw errorOnGo;
|
|
35
|
+
});
|
|
36
|
+
it('01: should display a virtual list with customization correctly', async () => {
|
|
37
|
+
await browser.eyesOpen();
|
|
38
|
+
const virtualListContainer = await DSVirtualListCO.getVirtualListContainer();
|
|
39
|
+
await virtualListContainer.waitForDisplayed();
|
|
40
|
+
const snapshot = await browser.eyesCheckSnapshot(DSVirtualListCO.snapshotPath('virtual-list-customization'));
|
|
41
|
+
await expect(snapshot).toEqual(0);
|
|
42
|
+
});
|
|
43
|
+
});
|
|
31
44
|
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
PATH_VIRTUALLIST,
|
|
3
|
+
PATH_E2E_VIRTUAL_LIST,
|
|
4
|
+
PATH_E2E_CUSTOMIZATION_SUPPORT,
|
|
5
|
+
} from '../../environments/storybook/paths';
|
|
2
6
|
import { PageObject, Urlbuilder, getElementByIndex } from '../helpers';
|
|
3
7
|
|
|
4
8
|
export default class DSVirtualListCO extends PageObject {
|
|
@@ -8,10 +12,16 @@ export default class DSVirtualListCO extends PageObject {
|
|
|
8
12
|
|
|
9
13
|
static testChanges = new Urlbuilder(PATH_E2E_VIRTUAL_LIST, 'test-element-changes');
|
|
10
14
|
|
|
15
|
+
static customization = new Urlbuilder(PATH_E2E_CUSTOMIZATION_SUPPORT, 'theming-virtual-list');
|
|
16
|
+
|
|
11
17
|
static async getButtons() {
|
|
12
18
|
return $$('[data-testid="ds-button"]');
|
|
13
19
|
}
|
|
14
20
|
|
|
21
|
+
static async getVirtualListContainer() {
|
|
22
|
+
return $('[data-testid="virtual-list-container"]');
|
|
23
|
+
}
|
|
24
|
+
|
|
15
25
|
static getAdd1Btn = async () => getElementByIndex(this.getButtons, 0);
|
|
16
26
|
|
|
17
27
|
static getChangeTimeBtn = async () => getElementByIndex(this.getButtons, 1);
|
package/package.json
CHANGED
|
@@ -1,125 +1,125 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dimsum-e2e-tests",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.30.0-next.0",
|
|
4
4
|
"description": "End-to-end tests for dimsum library",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@elliemae/ds-accessibility": "3.
|
|
7
|
-
"@elliemae/ds-
|
|
8
|
-
"@elliemae/ds-
|
|
9
|
-
"@elliemae/ds-
|
|
10
|
-
"@elliemae/ds-app-picker": "3.
|
|
11
|
-
"@elliemae/ds-
|
|
12
|
-
"@elliemae/ds-
|
|
13
|
-
"@elliemae/ds-
|
|
14
|
-
"@elliemae/ds-
|
|
15
|
-
"@elliemae/ds-button": "3.
|
|
16
|
-
"@elliemae/ds-
|
|
17
|
-
"@elliemae/ds-
|
|
18
|
-
"@elliemae/ds-
|
|
19
|
-
"@elliemae/ds-
|
|
20
|
-
"@elliemae/ds-card-v2-group": "3.
|
|
21
|
-
"@elliemae/ds-card
|
|
22
|
-
"@elliemae/ds-card": "3.
|
|
23
|
-
"@elliemae/ds-chat
|
|
24
|
-
"@elliemae/ds-chat": "3.
|
|
25
|
-
"@elliemae/ds-
|
|
26
|
-
"@elliemae/ds-
|
|
27
|
-
"@elliemae/ds-codeeditor": "3.
|
|
28
|
-
"@elliemae/ds-circular-progress-indicator": "3.
|
|
29
|
-
"@elliemae/ds-comments": "3.
|
|
30
|
-
"@elliemae/ds-controlled-form": "3.
|
|
31
|
-
"@elliemae/ds-csv-converter": "3.
|
|
32
|
-
"@elliemae/ds-
|
|
33
|
-
"@elliemae/ds-
|
|
34
|
-
"@elliemae/ds-
|
|
35
|
-
"@elliemae/ds-
|
|
36
|
-
"@elliemae/ds-date-
|
|
37
|
-
"@elliemae/ds-date-
|
|
38
|
-
"@elliemae/ds-date-range-selector": "3.
|
|
39
|
-
"@elliemae/ds-date-time-
|
|
40
|
-
"@elliemae/ds-decision-graph": "3.
|
|
41
|
-
"@elliemae/ds-dialog": "3.
|
|
42
|
-
"@elliemae/ds-dropdownmenu": "3.
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-form
|
|
49
|
-
"@elliemae/ds-form-
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"@elliemae/ds-
|
|
52
|
-
"@elliemae/ds-
|
|
53
|
-
"@elliemae/ds-
|
|
54
|
-
"@elliemae/ds-
|
|
55
|
-
"@elliemae/ds-
|
|
56
|
-
"@elliemae/ds-hooks-fontsize-detector": "3.
|
|
57
|
-
"@elliemae/ds-
|
|
58
|
-
"@elliemae/ds-hooks-fontsize-media": "3.
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-
|
|
61
|
-
"@elliemae/ds-
|
|
62
|
-
"@elliemae/ds-icons": "3.
|
|
63
|
-
"@elliemae/ds-
|
|
64
|
-
"@elliemae/ds-
|
|
65
|
-
"@elliemae/ds-list-section-header": "3.
|
|
66
|
-
"@elliemae/ds-
|
|
67
|
-
"@elliemae/ds-
|
|
68
|
-
"@elliemae/ds-
|
|
69
|
-
"@elliemae/ds-
|
|
70
|
-
"@elliemae/ds-mini-toolbar": "3.
|
|
71
|
-
"@elliemae/ds-
|
|
72
|
-
"@elliemae/ds-
|
|
73
|
-
"@elliemae/ds-modal-slide": "3.
|
|
74
|
-
"@elliemae/ds-
|
|
75
|
-
"@elliemae/ds-
|
|
76
|
-
"@elliemae/ds-
|
|
77
|
-
"@elliemae/ds-
|
|
78
|
-
"@elliemae/ds-
|
|
79
|
-
"@elliemae/ds-page-
|
|
80
|
-
"@elliemae/ds-page-
|
|
81
|
-
"@elliemae/ds-
|
|
82
|
-
"@elliemae/ds-
|
|
83
|
-
"@elliemae/ds-popper": "3.
|
|
84
|
-
"@elliemae/ds-
|
|
85
|
-
"@elliemae/ds-
|
|
86
|
-
"@elliemae/ds-
|
|
87
|
-
"@elliemae/ds-
|
|
88
|
-
"@elliemae/ds-
|
|
89
|
-
"@elliemae/ds-resizeable-container": "3.
|
|
90
|
-
"@elliemae/ds-
|
|
91
|
-
"@elliemae/ds-
|
|
92
|
-
"@elliemae/ds-separator": "3.
|
|
93
|
-
"@elliemae/ds-shuttle": "3.
|
|
94
|
-
"@elliemae/ds-shuttle-v2": "3.
|
|
95
|
-
"@elliemae/ds-side-panel": "3.
|
|
96
|
-
"@elliemae/ds-
|
|
97
|
-
"@elliemae/ds-
|
|
98
|
-
"@elliemae/ds-
|
|
99
|
-
"@elliemae/ds-
|
|
100
|
-
"@elliemae/ds-
|
|
101
|
-
"@elliemae/ds-svg": "3.
|
|
102
|
-
"@elliemae/ds-
|
|
103
|
-
"@elliemae/ds-
|
|
104
|
-
"@elliemae/ds-
|
|
105
|
-
"@elliemae/ds-time-picker": "3.
|
|
106
|
-
"@elliemae/ds-
|
|
107
|
-
"@elliemae/ds-toolbar": "3.
|
|
108
|
-
"@elliemae/ds-
|
|
109
|
-
"@elliemae/ds-
|
|
110
|
-
"@elliemae/ds-
|
|
111
|
-
"@elliemae/ds-
|
|
112
|
-
"@elliemae/ds-
|
|
113
|
-
"@elliemae/ds-treeview": "3.
|
|
114
|
-
"@elliemae/ds-truncated-
|
|
115
|
-
"@elliemae/ds-truncated-
|
|
116
|
-
"@elliemae/ds-typography": "3.
|
|
117
|
-
"@elliemae/ds-
|
|
118
|
-
"@elliemae/ds-
|
|
119
|
-
"@elliemae/ds-virtual-list": "3.
|
|
120
|
-
"@elliemae/ds-
|
|
121
|
-
"@elliemae/ds-
|
|
122
|
-
"@elliemae/ds-
|
|
123
|
-
"@elliemae/ds-
|
|
6
|
+
"@elliemae/ds-accessibility": "3.30.0-next.0",
|
|
7
|
+
"@elliemae/ds-accordion": "3.30.0-next.0",
|
|
8
|
+
"@elliemae/ds-backdrop": "3.30.0-next.0",
|
|
9
|
+
"@elliemae/ds-banner": "3.30.0-next.0",
|
|
10
|
+
"@elliemae/ds-app-picker": "3.30.0-next.0",
|
|
11
|
+
"@elliemae/ds-basic": "3.30.0-next.0",
|
|
12
|
+
"@elliemae/ds-breadcrumb": "3.30.0-next.0",
|
|
13
|
+
"@elliemae/ds-button": "3.30.0-next.0",
|
|
14
|
+
"@elliemae/ds-button-group": "3.30.0-next.0",
|
|
15
|
+
"@elliemae/ds-button-v1": "3.30.0-next.0",
|
|
16
|
+
"@elliemae/ds-button-v2": "3.30.0-next.0",
|
|
17
|
+
"@elliemae/ds-card-array": "3.30.0-next.0",
|
|
18
|
+
"@elliemae/ds-card-navigation": "3.30.0-next.0",
|
|
19
|
+
"@elliemae/ds-card-v2-action-addon": "3.30.0-next.0",
|
|
20
|
+
"@elliemae/ds-card-v2-group": "3.30.0-next.0",
|
|
21
|
+
"@elliemae/ds-card": "3.30.0-next.0",
|
|
22
|
+
"@elliemae/ds-card-v2": "3.30.0-next.0",
|
|
23
|
+
"@elliemae/ds-chat": "3.30.0-next.0",
|
|
24
|
+
"@elliemae/ds-chat-bubble": "3.30.0-next.0",
|
|
25
|
+
"@elliemae/ds-chat-tile": "3.30.0-next.0",
|
|
26
|
+
"@elliemae/ds-chip": "3.30.0-next.0",
|
|
27
|
+
"@elliemae/ds-codeeditor": "3.30.0-next.0",
|
|
28
|
+
"@elliemae/ds-circular-progress-indicator": "3.30.0-next.0",
|
|
29
|
+
"@elliemae/ds-comments": "3.30.0-next.0",
|
|
30
|
+
"@elliemae/ds-controlled-form": "3.30.0-next.0",
|
|
31
|
+
"@elliemae/ds-csv-converter": "3.30.0-next.0",
|
|
32
|
+
"@elliemae/ds-datagrids": "3.30.0-next.0",
|
|
33
|
+
"@elliemae/ds-dataviz": "3.30.0-next.0",
|
|
34
|
+
"@elliemae/ds-data-table": "3.30.0-next.0",
|
|
35
|
+
"@elliemae/ds-dataviz-pie": "3.30.0-next.0",
|
|
36
|
+
"@elliemae/ds-date-picker": "3.30.0-next.0",
|
|
37
|
+
"@elliemae/ds-date-range-picker": "3.30.0-next.0",
|
|
38
|
+
"@elliemae/ds-date-range-selector": "3.30.0-next.0",
|
|
39
|
+
"@elliemae/ds-date-time-picker": "3.30.0-next.0",
|
|
40
|
+
"@elliemae/ds-decision-graph": "3.30.0-next.0",
|
|
41
|
+
"@elliemae/ds-dialog": "3.30.0-next.0",
|
|
42
|
+
"@elliemae/ds-dropdownmenu": "3.30.0-next.0",
|
|
43
|
+
"@elliemae/ds-date-time-recurrence-picker": "3.30.0-next.0",
|
|
44
|
+
"@elliemae/ds-drag-and-drop": "3.30.0-next.0",
|
|
45
|
+
"@elliemae/ds-dropzone": "3.30.0-next.0",
|
|
46
|
+
"@elliemae/ds-fast-list": "3.30.0-next.0",
|
|
47
|
+
"@elliemae/ds-filterbar": "3.30.0-next.0",
|
|
48
|
+
"@elliemae/ds-form": "3.30.0-next.0",
|
|
49
|
+
"@elliemae/ds-form-date-range-picker": "3.30.0-next.0",
|
|
50
|
+
"@elliemae/ds-form-date-time-picker": "3.30.0-next.0",
|
|
51
|
+
"@elliemae/ds-form-layout-blocks": "3.30.0-next.0",
|
|
52
|
+
"@elliemae/ds-global-header": "3.30.0-next.0",
|
|
53
|
+
"@elliemae/ds-grid": "3.30.0-next.0",
|
|
54
|
+
"@elliemae/ds-form-layout-label": "3.30.0-next.0",
|
|
55
|
+
"@elliemae/ds-group-box": "3.30.0-next.0",
|
|
56
|
+
"@elliemae/ds-hooks-fontsize-detector": "3.30.0-next.0",
|
|
57
|
+
"@elliemae/ds-header": "3.30.0-next.0",
|
|
58
|
+
"@elliemae/ds-hooks-fontsize-media": "3.30.0-next.0",
|
|
59
|
+
"@elliemae/ds-icon": "3.30.0-next.0",
|
|
60
|
+
"@elliemae/ds-image": "3.30.0-next.0",
|
|
61
|
+
"@elliemae/ds-imagelibrarymodal": "3.30.0-next.0",
|
|
62
|
+
"@elliemae/ds-icons": "3.30.0-next.0",
|
|
63
|
+
"@elliemae/ds-indeterminate-progress-indicator": "3.30.0-next.0",
|
|
64
|
+
"@elliemae/ds-left-navigation": "3.30.0-next.0",
|
|
65
|
+
"@elliemae/ds-list-section-header": "3.30.0-next.0",
|
|
66
|
+
"@elliemae/ds-label-value": "3.30.0-next.0",
|
|
67
|
+
"@elliemae/ds-loading-indicator": "3.30.0-next.0",
|
|
68
|
+
"@elliemae/ds-menu": "3.30.0-next.0",
|
|
69
|
+
"@elliemae/ds-menu-items": "3.30.0-next.0",
|
|
70
|
+
"@elliemae/ds-mini-toolbar": "3.30.0-next.0",
|
|
71
|
+
"@elliemae/ds-mobile": "3.30.0-next.0",
|
|
72
|
+
"@elliemae/ds-modal": "3.30.0-next.0",
|
|
73
|
+
"@elliemae/ds-modal-slide": "3.30.0-next.0",
|
|
74
|
+
"@elliemae/ds-notification-badge": "3.30.0-next.0",
|
|
75
|
+
"@elliemae/ds-page-header": "3.30.0-next.0",
|
|
76
|
+
"@elliemae/ds-number-range-field": "3.30.0-next.0",
|
|
77
|
+
"@elliemae/ds-page-header-v1": "3.30.0-next.0",
|
|
78
|
+
"@elliemae/ds-page-header-v2": "3.30.0-next.0",
|
|
79
|
+
"@elliemae/ds-page-layout": "3.30.0-next.0",
|
|
80
|
+
"@elliemae/ds-page-number": "3.30.0-next.0",
|
|
81
|
+
"@elliemae/ds-pagination": "3.30.0-next.0",
|
|
82
|
+
"@elliemae/ds-pills": "3.30.0-next.0",
|
|
83
|
+
"@elliemae/ds-popper": "3.30.0-next.0",
|
|
84
|
+
"@elliemae/ds-popover": "3.30.0-next.0",
|
|
85
|
+
"@elliemae/ds-query-builder": "3.30.0-next.0",
|
|
86
|
+
"@elliemae/ds-progress-indicator": "3.30.0-next.0",
|
|
87
|
+
"@elliemae/ds-popperjs": "3.30.0-next.0",
|
|
88
|
+
"@elliemae/ds-read-more": "3.30.0-next.0",
|
|
89
|
+
"@elliemae/ds-resizeable-container": "3.30.0-next.0",
|
|
90
|
+
"@elliemae/ds-search-field": "3.30.0-next.0",
|
|
91
|
+
"@elliemae/ds-ribbon": "3.30.0-next.0",
|
|
92
|
+
"@elliemae/ds-separator": "3.30.0-next.0",
|
|
93
|
+
"@elliemae/ds-shuttle": "3.30.0-next.0",
|
|
94
|
+
"@elliemae/ds-shuttle-v2": "3.30.0-next.0",
|
|
95
|
+
"@elliemae/ds-side-panel": "3.30.0-next.0",
|
|
96
|
+
"@elliemae/ds-slider": "3.30.0-next.0",
|
|
97
|
+
"@elliemae/ds-skeleton": "3.30.0-next.0",
|
|
98
|
+
"@elliemae/ds-spinner": "3.30.0-next.0",
|
|
99
|
+
"@elliemae/ds-square-indicator": "3.30.0-next.0",
|
|
100
|
+
"@elliemae/ds-stepper": "3.30.0-next.0",
|
|
101
|
+
"@elliemae/ds-svg": "3.30.0-next.0",
|
|
102
|
+
"@elliemae/ds-system": "3.30.0-next.0",
|
|
103
|
+
"@elliemae/ds-tabs": "3.30.0-next.0",
|
|
104
|
+
"@elliemae/ds-text-wrapper": "3.30.0-next.0",
|
|
105
|
+
"@elliemae/ds-time-picker": "3.30.0-next.0",
|
|
106
|
+
"@elliemae/ds-test-utils": "3.30.0-next.0",
|
|
107
|
+
"@elliemae/ds-toolbar": "3.30.0-next.0",
|
|
108
|
+
"@elliemae/ds-toast": "3.30.0-next.0",
|
|
109
|
+
"@elliemae/ds-transition": "3.30.0-next.0",
|
|
110
|
+
"@elliemae/ds-toolbar-v2": "3.30.0-next.0",
|
|
111
|
+
"@elliemae/ds-tooltip": "3.30.0-next.0",
|
|
112
|
+
"@elliemae/ds-tree-model": "3.30.0-next.0",
|
|
113
|
+
"@elliemae/ds-treeview": "3.30.0-next.0",
|
|
114
|
+
"@elliemae/ds-truncated-tooltip-text": "3.30.0-next.0",
|
|
115
|
+
"@elliemae/ds-truncated-expandable-text": "3.30.0-next.0",
|
|
116
|
+
"@elliemae/ds-typography": "3.30.0-next.0",
|
|
117
|
+
"@elliemae/ds-utilities": "3.30.0-next.0",
|
|
118
|
+
"@elliemae/ds-uploader": "3.30.0-next.0",
|
|
119
|
+
"@elliemae/ds-virtual-list": "3.30.0-next.0",
|
|
120
|
+
"@elliemae/ds-wizard": "3.30.0-next.0",
|
|
121
|
+
"@elliemae/ds-wysiwygeditor": "3.30.0-next.0",
|
|
122
|
+
"@elliemae/ds-zoom": "3.30.0-next.0",
|
|
123
|
+
"@elliemae/ds-zipcode-search": "3.30.0-next.0"
|
|
124
124
|
}
|
|
125
125
|
}
|