-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
Fix flaky SO import tests #97586
Fix flaky SO import tests #97586
Conversation
await PageObjects.common.clickConfirmOnModal(false); | ||
await PageObjects.common.clickConfirmOnModal(true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is what was causing the flakiness.
When adding the tests in FTR tests in #76482, I had to add a manual delay between the first and second modal because the second one is appearing directly, so we can't rely on the ensureHidden
option of clickConfirmOnModal
. However I forgot to properly await the modal to close after the second click.
Flaky test runner - 150 executions - success: https://kibana-ci.elastic.co/job/kibana+flaky-test-suite-runner/1473/ |
This reverts commit ede007e
Pinging @elastic/kibana-core (Team:Core) |
This reverts commit ede007e
💚 Build SucceededMetrics [docs]
History
To update your PR or re-run it, just comment with: |
Summary
Fix #95660
Fix #95706