hello-theme/tests/playwright/selectors/top-bar-selectors.ts
2025-08-14 11:01:55 +03:00

35 lines
643 B
TypeScript

export type TopBarSelector = {
attribute: string;
attributeValue: string;
}
export default {
elementorLogo: {
attribute: 'value',
attributeValue: 'selected',
},
elementsPanel: {
attribute: 'value',
attributeValue: 'Add Element',
},
documentSettings: {
attribute: 'value',
attributeValue: 'document-settings',
},
siteSettings: {
attribute: 'value',
attributeValue: 'Site Settings',
},
saveOptions: {
attribute: 'aria-label',
attributeValue: 'Save Options',
},
publish: {
attribute: 'text',
attributeValue: 'Publish',
},
checklistToggle: {
attribute: 'aria-label',
attributeValue: 'Checklist',
},
};