mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary Starting with Chrome v113 we noticed that `_area_chart.ts` suite became flaky #156821 failing with `WebDriverError: unknown error: unhandled inspector error: {"code":-32000,"message":"No node with given id found"}` Updating chromedriver to v113 did not solve the issue and more tests started to fail with the same error. It happens occasionally when driver returns unhandled error instead of StaleElementReferenceException. This PR adds the error to the `RETRY_ON_ERRORS` list, so that FTR can search for the element again and re-try the action on it: ``` │ debg getVisibleText: elementId=29C3E81151C86107290DD8F020524333_element_290 │ debg Chromedriver issue #4440, WebElementWrapper.getVisibleText: WebDriverError: unknown error: unhandled inspector error: {"code":-32000,"message":"No node with given id found"} │ (Session info: chrome=113.0.5672.63) │ debg current ElementID=29C3E81151C86107290DD8F020524333_element_290 │ debg new ElementID=29C3E81151C86107290DD8F020524333_element_293 │ debg Searching again for the element 'By(css selector, [data-test-subj="visEditorInterval"] + .euiFormErrorText)', 2 attempts left │ debg getVisibleText: elementId=29C3E81151C86107290DD8F020524333_element_293 └- ✓ pass (1.8s) ``` There is no need to use `Retry` service, `WebDriverWrapper.retryCall` should handle the issue. Flaky test runner 100x for Vis Editor config: https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2236 Flaky test runner 100x for Cases config: https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2237 And 2 more 100x: https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2239 https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2237 |
||
---|---|---|
.. | ||
accessibility | ||
analytics | ||
api_integration | ||
common | ||
examples | ||
functional | ||
harden | ||
health_gateway | ||
interactive_setup_api_integration | ||
interactive_setup_functional | ||
interpreter_functional | ||
node_roles_functional | ||
package | ||
plugin_functional | ||
scripts | ||
server_integration | ||
ui_capabilities/newsfeed_err | ||
tsconfig.json |