Flaky: Functional testing framework sometimes doesn't navigate #19750
Labels
bug
Fixes for quality problems that affect the customer experience
failed-test
A test failure on a tracked branch, potentially flaky-test
Team:QA
Team label for QA Team
test
We have found this via the
_linked_saved_search
test case.The beginning of the test looks like:
This will navigate to discover and save a search. The
saveSearch
method actually ends with aawait testSubjects.exists('saveSearchSuccess', 2000);
to wait for the notification to show.We now had several failures where the first test actually wasn't able to navigate to the
visualzie
page. Even though it was put in aretry
and waiting for the visualize page to be visible, and if not try to navigate to that page again, we ended up in several test cases, that it failed after the maximum retries, and the screenshot showed, that it was still on the Discover page (but the search was saved successfully there, as you can see in the page top menu bar).I have no idea, what could cause the test framework not to execute that simple navigation properly, since it seems to work in a lot of cases, but the test failures for those on CI were actually rather often, so I think that the navigation has some severe flaws, we need to look into.
The text was updated successfully, but these errors were encountered: