Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add more PrimaryToolbar OUIA selectors #1995

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion packages/utils/src/CypressUtils/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,16 @@ export const PAGINATION_LAST = 'button[aria-label="Go to last page"]';
export const PAGINATION_FIRST = 'button[aria-label="Go to first page"]';
export const PAGINATION_CURRENT = '[aria-label="Current page"]';

/** FEC, other */
/** PrimaryToolbar OUIA */
export const PRIMARY_TOOLBAR = '[data-ouia-component-id="PrimaryToolbar"]';
export const PRIMARY_TOOLBAR_ACTIONS = '.ins-c-primary-toolbar__actions';
export const CONDITIONAL_FILTER = '[data-ouia-component-id="ConditionalFilter"]';
export const CONDITIONAL_FILTER_TOGGLE = '[data-ouia-component-id="ConditionalFilterToggle"]';
export const PT_CONDITIONAL_FILTER = '[data-ouia-component-id="ConditionalFilter"]';
export const PT_CONDITIONAL_FILTER_TOGGLE = '[data-ouia-component-id="ConditionalFilterToggle"]';
export const PT_CONDITIONAL_FILTER_LIST = '[data-ouia-component-id="ConditionalFilterList"]';
export const PT_BULK_SELECT = '[data-ouia-component-id="BulkSelect"]';
export const PT_BULK_SELECT_CHECKBOX = '[data-ouia-component-id="BulkSelectCheckbox"]';
export const PT_BULK_SELECT_LIST = '[data-ouia-component-id="BulkSelectList"]';
export const PT_BULK_ACTIONS_TOGGLE = '[data-ouia-component-id="BulkActionsToggle"]';
export const PT_BULK_ACTIONS_LIST = '[data-ouia-component-id="BulkActionsList"]';
Loading