saleor-dashboard/cypress/elements/shared/sharedElements.js
Karolina Rakoczy 12e9cf0472
fix failing tests (#1200)
* fix failing tests

* skip test for variant

* skip failing test

* uncomment tests for fixed bugs

* fix test.yaml
2021-07-05 15:05:13 +02:00

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}]`;