
* fix failing tests * skip test for variant * skip failing test * uncomment tests for fixed bugs * fix test.yaml
10 lines
335 B
JavaScript
10 lines
335 B
JavaScript
export const SHARED_ELEMENTS = {
|
|
header: "[data-test-id='page-header']",
|
|
progressBar: '[role="progressbar"]',
|
|
skeleton: '[data-test-id="skeleton"]',
|
|
table: 'table[class*="Table"]',
|
|
confirmationMsg: "[data-test='notification-success']"
|
|
};
|
|
|
|
export const getElementByDataTestId = dataTestId =>
|
|
`[data-test-id=${dataTestId}]`;
|