Skip to content

Commit 2dfda12

Browse files
authored
Unskip advanced settings a11y test (elastic#100558)
1 parent 90f2d09 commit 2dfda12

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

x-pack/test/accessibility/apps/advanced_settings.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,45 +11,51 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
1111
const PageObjects = getPageObjects(['common', 'settings', 'header']);
1212
const a11y = getService('a11y');
1313
const testSubjects = getService('testSubjects');
14+
const toasts = getService('toasts');
1415

15-
// FLAKY: https://github.com/elastic/kibana/issues/99006
16-
describe.skip('Stack Management -Advanced Settings', () => {
16+
describe('Stack Management -Advanced Settings', () => {
1717
// click on Management > Advanced settings
1818
it('click on advanced settings ', async () => {
1919
await PageObjects.common.navigateToUrl('management', 'kibana/settings', {
2020
shouldUseHashForSubUrl: false,
2121
});
2222
await testSubjects.click('settings');
23+
await toasts.dismissAllToasts();
2324
await a11y.testAppSnapshot();
2425
});
2526

2627
// clicking on the top search bar
2728
it('adv settings - search ', async () => {
2829
await testSubjects.click('settingsSearchBar');
30+
await toasts.dismissAllToasts();
2931
await a11y.testAppSnapshot();
3032
});
3133

3234
// clicking on the category dropdown
3335
it('adv settings - category -dropdown ', async () => {
3436
await testSubjects.click('settingsSearchBar');
37+
await toasts.dismissAllToasts();
3538
await a11y.testAppSnapshot();
3639
});
3740

3841
// clicking on the toggle button
3942
it('adv settings - toggle ', async () => {
4043
await testSubjects.click('advancedSetting-editField-csv:quoteValues');
44+
await toasts.dismissAllToasts();
4145
await a11y.testAppSnapshot();
4246
});
4347

4448
// clicking on editor panel
4549
it('adv settings - edit ', async () => {
4650
await testSubjects.click('advancedSetting-editField-csv:separator');
51+
await toasts.dismissAllToasts();
4752
await a11y.testAppSnapshot();
4853
});
4954

5055
// clicking on save button
5156
it('adv settings - save', async () => {
5257
await testSubjects.click('advancedSetting-saveButton');
58+
await toasts.dismissAllToasts();
5359
await a11y.testAppSnapshot();
5460
});
5561
});

0 commit comments

Comments
 (0)