Skip to content

[Infra] Fix hosts view tests#257997

Merged
jennypavlova merged 5 commits intoelastic:mainfrom
jennypavlova:257429-fix
Mar 17, 2026
Merged

[Infra] Fix hosts view tests#257997
jennypavlova merged 5 commits intoelastic:mainfrom
jennypavlova:257429-fix

Conversation

@jennypavlova
Copy link
Copy Markdown
Member

@jennypavlova jennypavlova commented Mar 16, 2026

Closes #257428
Closes #257429

Summary

This PR tries to fix the flaky behaviour in the hosts view flyout tests.

The fix includes:

  • Use Escape key press instead of clicking on the close button to close the flyout and account for the overlay mask
  • Wait for the date picker to be visible before selecting the range
  • Use a JavaScript click for the three main tabs: For visitMetricsTab, visitLogsTab, and visitAlertTab we now:
    • Keep scrollIntoViewIfNecessary() so the tab is in view.
    • Replace moveMouseTo() + click() with browser.execute('arguments[0].click();', tab).
      So the click is triggered via the DOM element instead of a physical click at coordinates. That avoids the “element click intercepted” check and works even when another element is drawn on top of the tab (e.g. KPI flex item, icon, or text).
  • The existing browser.scrollTop() in each tab’s before() hook is unchanged, so the page is still scrolled to the top before opening each tab.

Checklist

@jennypavlova jennypavlova self-assigned this Mar 16, 2026
@jennypavlova jennypavlova added release_note:skip Skip the PR/issue when compiling release notes backport:all-open Backport to all branches that could still receive a release Team:obs-presentation Focus: APM UI, Infra UI, Hosts UI, Universal Profiling, Obs Overview and left Navigation labels Mar 16, 2026
@kibanamachine
Copy link
Copy Markdown
Contributor

Flaky Test Runner Stats

🟠 Some tests failed. - kibana-flaky-test-suite-runner#11108

[✅] x-pack/performance/journeys_e2e/infra_hosts_view.ts: 25/25 tests passed.
[❌] x-pack/solutions/observability/test/functional/apps/infra/config.ts: 0/25 tests passed.

see run history

@jennypavlova jennypavlova marked this pull request as ready for review March 17, 2026 14:35
@jennypavlova jennypavlova requested a review from a team as a code owner March 17, 2026 14:35
@elasticmachine
Copy link
Copy Markdown
Contributor

Pinging @elastic/obs-presentation-team (Team:obs-presentation)

Copy link
Copy Markdown
Contributor

@sbelastic sbelastic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM :)

Just run the flaky tester again please to make sure it passes.

@kibanamachine
Copy link
Copy Markdown
Contributor

Flaky Test Runner Stats

🎉 All tests passed! - kibana-flaky-test-suite-runner#11126

[✅] x-pack/performance/journeys_e2e/infra_hosts_view.ts: 25/25 tests passed.
[✅] x-pack/solutions/observability/test/functional/apps/infra/config.ts: 25/25 tests passed.

see run history

@elasticmachine
Copy link
Copy Markdown
Contributor

💛 Build succeeded, but was flaky

Failed CI Steps

Test Failures

  • [job] [logs] FTR Configs #31 / dashboard "after all" hook: afterTestSuite.trigger in "dashboard"
  • [job] [logs] FTR Configs #165 / dashboard app - group 2 full screen mode exits full screen mode when back button pressed
  • [job] [logs] FTR Configs #31 / dashboard feature controls "after all" hook: afterTestSuite.trigger in "feature controls"
  • [job] [logs] FTR Configs #31 / dashboard feature controls dashboard feature controls security "after all" hook in "dashboard feature controls security"
  • [job] [logs] FTR Configs #31 / dashboard feature controls dashboard feature controls security global dashboard read-only privileges "after all" hook: afterTestSuite.trigger for "loads an annotation from the library in the lens chart"
  • [job] [logs] FTR Configs #31 / dashboard feature controls dashboard feature controls security global dashboard read-only privileges "before all" hook for "shows dashboard navlink"
  • [job] [logs] Scout: [ platform / dashboard-stateful-classic ] plugin / local-stateful-classic - Sync colors - should be possible to disable color sync

Metrics [docs]

✅ unchanged

cc @jennypavlova

@jennypavlova jennypavlova merged commit 122d887 into elastic:main Mar 17, 2026
19 checks passed
@kibanamachine
Copy link
Copy Markdown
Contributor

Starting backport for target branches: 8.19, 9.2, 9.3

https://github.com/elastic/kibana/actions/runs/23203496427

kibanamachine pushed a commit to kibanamachine/kibana that referenced this pull request Mar 17, 2026
Closes elastic#257428
Closes elastic#257429

## Summary

This PR tries to fix the flaky behaviour in the hosts view flyout tests.

The fix includes:
- Use Escape key press instead of clicking on the close button to close
the flyout and account for the overlay mask
- Wait for the date picker to be visible before selecting the range
- Use a JavaScript click for the three main tabs: For visitMetricsTab,
visitLogsTab, and visitAlertTab we now:
  - Keep scrollIntoViewIfNecessary() so the tab is in view.
- Replace moveMouseTo() + click() with
browser.execute('arguments[0].click();', tab).
So the click is triggered via the DOM element instead of a physical
click at coordinates. That avoids the “element click intercepted” check
and works even when another element is drawn on top of the tab (e.g. KPI
flex item, icon, or text).
- The existing browser.scrollTop() in each tab’s before() hook is
unchanged, so the page is still scrolled to the top before opening each
tab.

### Checklist

- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

(cherry picked from commit 122d887)
@kibanamachine
Copy link
Copy Markdown
Contributor

💔 Some backports could not be created

Status Branch Result
8.19 Backport failed because of merge conflicts

You might need to backport the following PRs to 8.19:
- [ska] relocate solutions ES archives (#229914)
9.2 Backport failed because of merge conflicts
9.3

Note: Successful backport PRs will be merged automatically after passing CI.

Manual backport

To create the backport manually run:

node scripts/backport --pr 257997

Questions ?

Please refer to the Backport tool documentation

jennypavlova added a commit to jennypavlova/kibana that referenced this pull request Mar 17, 2026
Closes elastic#257428
Closes elastic#257429

## Summary

This PR tries to fix the flaky behaviour in the hosts view flyout tests.

The fix includes:
- Use Escape key press instead of clicking on the close button to close
the flyout and account for the overlay mask
- Wait for the date picker to be visible before selecting the range
- Use a JavaScript click for the three main tabs: For visitMetricsTab,
visitLogsTab, and visitAlertTab we now:
  - Keep scrollIntoViewIfNecessary() so the tab is in view.
- Replace moveMouseTo() + click() with
browser.execute('arguments[0].click();', tab).
So the click is triggered via the DOM element instead of a physical
click at coordinates. That avoids the “element click intercepted” check
and works even when another element is drawn on top of the tab (e.g. KPI
flex item, icon, or text).
- The existing browser.scrollTop() in each tab’s before() hook is
unchanged, so the page is still scrolled to the top before opening each
tab.

### Checklist

- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

(cherry picked from commit 122d887)

# Conflicts:
#	x-pack/solutions/observability/test/functional/apps/infra/hosts_view.ts
kibanamachine added a commit that referenced this pull request Mar 17, 2026
# Backport

This will backport the following commits from `main` to `9.3`:
- [[Infra] Fix hosts view tests
(#257997)](#257997)

<!--- Backport version: 9.6.6 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT
[{"author":{"name":"jennypavlova","email":"dzheni.pavlova@elastic.co"},"sourceCommit":{"committedDate":"2026-03-17T15:57:30Z","message":"[Infra]
Fix hosts view tests (#257997)\n\nCloses #257428 \nCloses #257429 \n\n##
Summary\n\nThis PR tries to fix the flaky behaviour in the hosts view
flyout tests.\n\nThe fix includes: \n- Use Escape key press instead of
clicking on the close button to close\nthe flyout and account for the
overlay mask\n- Wait for the date picker to be visible before selecting
the range\n- Use a JavaScript click for the three main tabs: For
visitMetricsTab,\nvisitLogsTab, and visitAlertTab we now:\n - Keep
scrollIntoViewIfNecessary() so the tab is in view.\n- Replace
moveMouseTo() + click() with\nbrowser.execute('arguments[0].click();',
tab).\nSo the click is triggered via the DOM element instead of a
physical\nclick at coordinates. That avoids the “element click
intercepted” check\nand works even when another element is drawn on top
of the tab (e.g. KPI\nflex item, icon, or text).\n- The existing
browser.scrollTop() in each tab’s before() hook is\nunchanged, so the
page is still scrolled to the top before opening each\ntab.\n\n###
Checklist\n\n- [ ] [Flaky
Test\nRunner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1)
was\nused on any tests changed\n- [ ] Review the
[backport\nguidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)\nand
apply applicable `backport:*`
labels.","sha":"122d887fe14b572849714ecbd9a9974d5cab7629","branchLabelMapping":{"^v9.4.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:all-open","v9.4.0","Team:obs-presentation"],"title":"[Infra]
Fix hosts view
tests","number":257997,"url":"https://github.com/elastic/kibana/pull/257997","mergeCommit":{"message":"[Infra]
Fix hosts view tests (#257997)\n\nCloses #257428 \nCloses #257429 \n\n##
Summary\n\nThis PR tries to fix the flaky behaviour in the hosts view
flyout tests.\n\nThe fix includes: \n- Use Escape key press instead of
clicking on the close button to close\nthe flyout and account for the
overlay mask\n- Wait for the date picker to be visible before selecting
the range\n- Use a JavaScript click for the three main tabs: For
visitMetricsTab,\nvisitLogsTab, and visitAlertTab we now:\n - Keep
scrollIntoViewIfNecessary() so the tab is in view.\n- Replace
moveMouseTo() + click() with\nbrowser.execute('arguments[0].click();',
tab).\nSo the click is triggered via the DOM element instead of a
physical\nclick at coordinates. That avoids the “element click
intercepted” check\nand works even when another element is drawn on top
of the tab (e.g. KPI\nflex item, icon, or text).\n- The existing
browser.scrollTop() in each tab’s before() hook is\nunchanged, so the
page is still scrolled to the top before opening each\ntab.\n\n###
Checklist\n\n- [ ] [Flaky
Test\nRunner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1)
was\nused on any tests changed\n- [ ] Review the
[backport\nguidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)\nand
apply applicable `backport:*`
labels.","sha":"122d887fe14b572849714ecbd9a9974d5cab7629"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.4.0","branchLabelMappingKey":"^v9.4.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/257997","number":257997,"mergeCommit":{"message":"[Infra]
Fix hosts view tests (#257997)\n\nCloses #257428 \nCloses #257429 \n\n##
Summary\n\nThis PR tries to fix the flaky behaviour in the hosts view
flyout tests.\n\nThe fix includes: \n- Use Escape key press instead of
clicking on the close button to close\nthe flyout and account for the
overlay mask\n- Wait for the date picker to be visible before selecting
the range\n- Use a JavaScript click for the three main tabs: For
visitMetricsTab,\nvisitLogsTab, and visitAlertTab we now:\n - Keep
scrollIntoViewIfNecessary() so the tab is in view.\n- Replace
moveMouseTo() + click() with\nbrowser.execute('arguments[0].click();',
tab).\nSo the click is triggered via the DOM element instead of a
physical\nclick at coordinates. That avoids the “element click
intercepted” check\nand works even when another element is drawn on top
of the tab (e.g. KPI\nflex item, icon, or text).\n- The existing
browser.scrollTop() in each tab’s before() hook is\nunchanged, so the
page is still scrolled to the top before opening each\ntab.\n\n###
Checklist\n\n- [ ] [Flaky
Test\nRunner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1)
was\nused on any tests changed\n- [ ] Review the
[backport\nguidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)\nand
apply applicable `backport:*`
labels.","sha":"122d887fe14b572849714ecbd9a9974d5cab7629"}}]}]
BACKPORT-->

Co-authored-by: jennypavlova <dzheni.pavlova@elastic.co>
jennypavlova added a commit to jennypavlova/kibana that referenced this pull request Mar 17, 2026
Closes elastic#257428
Closes elastic#257429

## Summary

This PR tries to fix the flaky behaviour in the hosts view flyout tests.

The fix includes:
- Use Escape key press instead of clicking on the close button to close
the flyout and account for the overlay mask
- Wait for the date picker to be visible before selecting the range
- Use a JavaScript click for the three main tabs: For visitMetricsTab,
visitLogsTab, and visitAlertTab we now:
  - Keep scrollIntoViewIfNecessary() so the tab is in view.
- Replace moveMouseTo() + click() with
browser.execute('arguments[0].click();', tab).
So the click is triggered via the DOM element instead of a physical
click at coordinates. That avoids the “element click intercepted” check
and works even when another element is drawn on top of the tab (e.g. KPI
flex item, icon, or text).
- The existing browser.scrollTop() in each tab’s before() hook is
unchanged, so the page is still scrolled to the top before opening each
tab.

### Checklist

- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

(cherry picked from commit 122d887)

# Conflicts:
#	x-pack/solutions/observability/test/functional/apps/infra/hosts_view.ts
@jennypavlova
Copy link
Copy Markdown
Member Author

💚 All backports created successfully

Status Branch Result
9.2
8.19

Note: Successful backport PRs will be merged automatically after passing CI.

Questions ?

Please refer to the Backport tool documentation

@kibanamachine kibanamachine added the backport missing Added to PRs automatically when the are determined to be missing a backport. label Mar 18, 2026
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

jeramysoucy pushed a commit to jeramysoucy/kibana that referenced this pull request Mar 26, 2026
Closes elastic#257428 
Closes elastic#257429 

## Summary

This PR tries to fix the flaky behaviour in the hosts view flyout tests.

The fix includes: 
- Use Escape key press instead of clicking on the close button to close
the flyout and account for the overlay mask
- Wait for the date picker to be visible before selecting the range
- Use a JavaScript click for the three main tabs: For visitMetricsTab,
visitLogsTab, and visitAlertTab we now:
  - Keep scrollIntoViewIfNecessary() so the tab is in view.
- Replace moveMouseTo() + click() with
browser.execute('arguments[0].click();', tab).
So the click is triggered via the DOM element instead of a physical
click at coordinates. That avoids the “element click intercepted” check
and works even when another element is drawn on top of the tab (e.g. KPI
flex item, icon, or text).
- The existing browser.scrollTop() in each tab’s before() hook is
unchanged, so the page is still scrolled to the top before opening each
tab.

### Checklist

- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [ ] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

13 similar comments
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

miloszmarcinkowski added a commit that referenced this pull request Apr 8, 2026
Closes #258194

## Summary

An attempt to fix flaky Infrastructure test by verifying if Host view
flyout is opened before proceeding further with other steps. There
wasn't reliable way to replicate the flakiness on the local. Follow up
on #257997

### How to test locally
```
node scripts/functional_tests_server --config x-pack/solutions/observability/test/functional/apps/infra/config.ts
```

```
for i in $(seq 1 10); do
  echo "=== Run $i ==="
  node scripts/functional_test_runner \
    --config x-pack/solutions/observability/test/functional/apps/infra/config.ts \
    --grep "Dashboards Tab" \
    || echo "FAILED on run $i"
done
```
kibanamachine pushed a commit to kibanamachine/kibana that referenced this pull request Apr 8, 2026
Closes elastic#258194

## Summary

An attempt to fix flaky Infrastructure test by verifying if Host view
flyout is opened before proceeding further with other steps. There
wasn't reliable way to replicate the flakiness on the local. Follow up
on elastic#257997

### How to test locally
```
node scripts/functional_tests_server --config x-pack/solutions/observability/test/functional/apps/infra/config.ts
```

```
for i in $(seq 1 10); do
  echo "=== Run $i ==="
  node scripts/functional_test_runner \
    --config x-pack/solutions/observability/test/functional/apps/infra/config.ts \
    --grep "Dashboards Tab" \
    || echo "FAILED on run $i"
done
```

(cherry picked from commit fb8461f)
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

3 similar comments
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

kibanamachine added a commit that referenced this pull request Apr 10, 2026
# Backport

This will backport the following commits from `main` to `9.3`:
- [Attempt to fix flaky Infra test
(#261465)](#261465)

<!--- Backport version: 9.6.6 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)

<!--BACKPORT [{"author":{"name":"Miłosz
Marcinkowski","email":"38698566+miloszmarcinkowski@users.noreply.github.com"},"sourceCommit":{"committedDate":"2026-04-08T14:14:15Z","message":"Attempt
to fix flaky Infra test (#261465)\n\nCloses #258194\n\n## Summary\n\nAn
attempt to fix flaky Infrastructure test by verifying if Host
view\nflyout is opened before proceeding further with other steps.
There\nwasn't reliable way to replicate the flakiness on the local.
Follow up\non #257997\n\n### How to test locally\n```\nnode
scripts/functional_tests_server --config
x-pack/solutions/observability/test/functional/apps/infra/config.ts\n```\n\n```\nfor
i in $(seq 1 10); do\n echo \"=== Run $i ===\"\n node
scripts/functional_test_runner \\\n --config
x-pack/solutions/observability/test/functional/apps/infra/config.ts \\\n
--grep \"Dashboards Tab\" \\\n || echo \"FAILED on run
$i\"\ndone\n```","sha":"fb8461fdcbf6f9bfdb63eb8d4e9c814a65c62b5e","branchLabelMapping":{"^v9.4.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:all-open","v9.4.0","Team:obs-presentation"],"title":"Attempt
to fix flaky Infra
test","number":261465,"url":"https://github.com/elastic/kibana/pull/261465","mergeCommit":{"message":"Attempt
to fix flaky Infra test (#261465)\n\nCloses #258194\n\n## Summary\n\nAn
attempt to fix flaky Infrastructure test by verifying if Host
view\nflyout is opened before proceeding further with other steps.
There\nwasn't reliable way to replicate the flakiness on the local.
Follow up\non #257997\n\n### How to test locally\n```\nnode
scripts/functional_tests_server --config
x-pack/solutions/observability/test/functional/apps/infra/config.ts\n```\n\n```\nfor
i in $(seq 1 10); do\n echo \"=== Run $i ===\"\n node
scripts/functional_test_runner \\\n --config
x-pack/solutions/observability/test/functional/apps/infra/config.ts \\\n
--grep \"Dashboards Tab\" \\\n || echo \"FAILED on run
$i\"\ndone\n```","sha":"fb8461fdcbf6f9bfdb63eb8d4e9c814a65c62b5e"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.4.0","branchLabelMappingKey":"^v9.4.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/261465","number":261465,"mergeCommit":{"message":"Attempt
to fix flaky Infra test (#261465)\n\nCloses #258194\n\n## Summary\n\nAn
attempt to fix flaky Infrastructure test by verifying if Host
view\nflyout is opened before proceeding further with other steps.
There\nwasn't reliable way to replicate the flakiness on the local.
Follow up\non #257997\n\n### How to test locally\n```\nnode
scripts/functional_tests_server --config
x-pack/solutions/observability/test/functional/apps/infra/config.ts\n```\n\n```\nfor
i in $(seq 1 10); do\n echo \"=== Run $i ===\"\n node
scripts/functional_test_runner \\\n --config
x-pack/solutions/observability/test/functional/apps/infra/config.ts \\\n
--grep \"Dashboards Tab\" \\\n || echo \"FAILED on run
$i\"\ndone\n```","sha":"fb8461fdcbf6f9bfdb63eb8d4e9c814a65c62b5e"}}]}]
BACKPORT-->

Co-authored-by: Miłosz Marcinkowski <38698566+miloszmarcinkowski@users.noreply.github.com>
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

4 similar comments
@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

@kibanamachine
Copy link
Copy Markdown
Contributor

Looks like this PR has backport PRs but they still haven't been merged. Please merge them ASAP to keep the branches relatively in sync.
cc: @jennypavlova

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport:all-open Backport to all branches that could still receive a release backport missing Added to PRs automatically when the are determined to be missing a backport. release_note:skip Skip the PR/issue when compiling release notes Team:obs-presentation Focus: APM UI, Infra UI, Hosts UI, Universal Profiling, Obs Overview and left Navigation v9.3.2 v9.4.0

Projects

None yet

4 participants