Skip to content

Commit

Permalink
[QA]Change to skipTourIfExists in console CCS tests instead of closeH…
Browse files Browse the repository at this point in the history
…elpifExists (elastic#199017)

## Summary

With the change from the ace console to monaco console, the UI has
changed and the methods as well. We're now using `skipTourIfExists`
instead of `closeHelpIfExists`.
  • Loading branch information
marius-dr authored and mgadewoll committed Nov 7, 2024
1 parent 6db5d88 commit 3117e87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function ({ getService, getPageObjects }) {
await PageObjects.common.navigateToApp('console');
await PageObjects.common.dismissBanner();
await retry.try(async () => {
await PageObjects.console.closeHelpIfExists();
await PageObjects.console.skipTourIfExists();
});
});

Expand Down

0 comments on commit 3117e87

Please sign in to comment.