mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Graph] Unskip a11y functional test (#141798)
This commit is contained in:
parent
94fe1e6353
commit
384ecc4b7b
3 changed files with 15 additions and 5 deletions
|
@ -261,7 +261,15 @@ export function UrlTemplateForm(props: UrlTemplateFormProps) {
|
|||
defaultMessage: 'Toolbar icon',
|
||||
})}
|
||||
>
|
||||
<div role="listbox">
|
||||
<div
|
||||
role="listbox"
|
||||
aria-label={i18n.translate(
|
||||
'xpack.graph.settings.drillDowns.toolbarIconPickerSelectionAriaLabel',
|
||||
{
|
||||
defaultMessage: 'Toolbar icon selection',
|
||||
}
|
||||
)}
|
||||
>
|
||||
{urlTemplateIconChoices.map((icon) => (
|
||||
<LegacyIcon
|
||||
aria-label={icon.label}
|
||||
|
|
|
@ -178,6 +178,9 @@ export const WorkspaceTopNavMenu = (props: WorkspaceTopNavMenuProps) => {
|
|||
ownFocus: true,
|
||||
className: 'gphSettingsFlyout',
|
||||
maxWidth: 520,
|
||||
'aria-label': i18n.translate('xpack.graph.settings.ariaLabel', {
|
||||
defaultMessage: 'Settings',
|
||||
}),
|
||||
}
|
||||
);
|
||||
},
|
||||
|
|
|
@ -79,12 +79,11 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
await browser.pressKeys(browser.keys.ESCAPE);
|
||||
});
|
||||
|
||||
// https://github.com/elastic/kibana/issues/134693
|
||||
it.skip('Graph settings drilldown tab - add new drilldown', async function () {
|
||||
it('Graph settings drilldown tab - add new drilldown', async function () {
|
||||
await testSubjects.click('graphSettingsButton');
|
||||
await testSubjects.click('drillDowns');
|
||||
await testSubjects.click('graphAddNewTemplate');
|
||||
await a11y.testAppSnapshot();
|
||||
await testSubjects.click('graphRemoveUrlTemplate');
|
||||
await testSubjects.click('euiFlyoutCloseButton');
|
||||
await browser.pressKeys(browser.keys.ESCAPE);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue