Skip to content
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

[Discover/Reporting] Fix export that does not contain relative time filter #110459

Merged
merged 20 commits into from
Sep 14, 2021

Conversation

jloleysens
Copy link
Contributor

@jloleysens jloleysens commented Aug 30, 2021

Summary

Closes #22261

This PR updates Discover and Reporting to work together in a way that allows for the use of relative time ranges to be set in reports.

The current implementation adds new functionality to the get_time.ts. A new function getRelativeTime was added that will allow relative time values, like now-1m, to be unchanged in the generated SearchSource. The getTime function is unchanged to prevent issues with other consumers that may rely on absolute time.

How to test

  1. Start Kibana & ES on basic and load up the sample data set (I went with kibana_sample_data_flights)
  2. Go to discover and set a relative time range of now to now-2m. This is a fairly small window for testing purposes.
  3. In Console create a couple of documents in kibana_sample_data_flights by running:
# Replace Y, M, D, H, m and s with UTC time that is within 2 minutes of your "now"
POST /kibana_sample_data_flights/_doc?refresh
{
  "timestamp" : "YYYY-MM-DDTHH:mm:ss" 
}
  1. In the Share menu request a new CSV report
  2. In the "Advanced" section, copy the URL and issue the same request to Kibana using cURL. Check that in the URL the timeRange value is present and that there are no absolute time values.
  3. In both instances the report generated should return values only within the relative time range of when you issued the request
  4. Test the same flow but using absolute time ranges in the Discover UI, these should work as expected too.

Release note

We fixed an issue where the URL for generating discover reports only contained absolute time values despite users inputting a relative time value.

Checklist

@jloleysens jloleysens added Feature:Discover Discover Application release_note:fix (Deprecated) Feature:Reporting Use Reporting:Screenshot, Reporting:CSV, or Reporting:Framework instead loe:small Small Level of Effort v8.0.0 Team:AppServices impact:high Addressing this issue will have a high level of impact on the quality/strength of our product. v7.16.0 labels Aug 30, 2021
@jloleysens jloleysens requested review from kertal and tsullivan August 30, 2021 11:31
@tsullivan
Copy link
Member

Is there a reason get_time needs to turn the time range filter to an absolute time? The discover search source seems to function correctly without first doing that step since datemath is supported on the ES endpoint used to get the data.

We should check with @ppisljar and @lukasolson, who might know this answer. Maybe we still have an opportunity to fix this bug in SearchSource's behavior - it just needs to keep track of the relative time that was given as input. That would mean not changing Reporting code, and making SearchSource more friendly to any sharing service that uses it.

However, this is a really bad bug and users have been waiting a long time for a fix. If it's not feasible to work this out in SearchSource then the direction @jloleysens is going with this PR is acceptable to me.

Copy link
Member

@ppisljar ppisljar left a comment

Choose a reason for hiding this comment

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

We need to make sure that when we serialize searchsource we can restore it on the server and we shouldn't need to do any other tricks to make that work.

We shouldn't be doing any special handling in reporting. That gives reporting way too much internal knowledge of how searches are performed and it will quickly get us back to the csv export v1 days.

@ppisljar
Copy link
Member

here is the issue describing our conversion to absolute: #88480
shouldn't be needed in discover, so i think its safe to remove it ?

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

@jloleysens
Copy link
Contributor Author

@elasticmachine merge upstream

@jloleysens jloleysens marked this pull request as ready for review August 31, 2021 12:14
@jloleysens jloleysens requested a review from a team August 31, 2021 12:14
@jloleysens jloleysens requested review from a team as code owners August 31, 2021 12:14
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-app-services (Team:AppServices)

@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-reporting-services (Team:Reporting Services)

@jloleysens jloleysens requested a review from a team as a code owner September 13, 2021 14:36
@qn895
Copy link
Member

qn895 commented Sep 13, 2021

ML change LGTM 🎉

Copy link
Member

@tsullivan tsullivan left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Member

@ppisljar ppisljar left a comment

Choose a reason for hiding this comment

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

code LGTM

@jloleysens jloleysens merged commit 4e4afc7 into elastic:master Sep 14, 2021
@jloleysens jloleysens deleted the data/allow-relative-timefilters branch September 14, 2021 12:40
jloleysens added a commit to jloleysens/kibana that referenced this pull request Sep 14, 2021
…ilter (elastic#110459)

* version 1 of fix: we set the time range on the search source at CSV generation time

* updated jest tests and updated API for getSharingData

* make time range optional for getSharingData

* pivot to updating "getTime" functionality by introducing a new flag

* update jest snapshots

* update comment

* refactored coerceToAbsoluteTime -> coerceRelativeTimeToAbsoluteTime and updated behaviour to be more specific

* fix jest test

* do not change createFilter API, rather create new createRelativeFilter API, also only use this in one place in discover

* update jest tests

* update mock

* update jest test mock

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
jloleysens added a commit to jloleysens/kibana that referenced this pull request Sep 14, 2021
…ilter (elastic#110459)

* version 1 of fix: we set the time range on the search source at CSV generation time

* updated jest tests and updated API for getSharingData

* make time range optional for getSharingData

* pivot to updating "getTime" functionality by introducing a new flag

* update jest snapshots

* update comment

* refactored coerceToAbsoluteTime -> coerceRelativeTimeToAbsoluteTime and updated behaviour to be more specific

* fix jest test

* do not change createFilter API, rather create new createRelativeFilter API, also only use this in one place in discover

* update jest tests

* update mock

* update jest test mock

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	src/plugins/data/common/query/timefilter/get_time.test.ts
jloleysens added a commit to jloleysens/kibana that referenced this pull request Sep 14, 2021
…ilter (elastic#110459)

* version 1 of fix: we set the time range on the search source at CSV generation time

* updated jest tests and updated API for getSharingData

* make time range optional for getSharingData

* pivot to updating "getTime" functionality by introducing a new flag

* update jest snapshots

* update comment

* refactored coerceToAbsoluteTime -> coerceRelativeTimeToAbsoluteTime and updated behaviour to be more specific

* fix jest test

* do not change createFilter API, rather create new createRelativeFilter API, also only use this in one place in discover

* update jest tests

* update mock

* update jest test mock

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	src/plugins/data/common/query/timefilter/get_time.test.ts
#	src/plugins/data/common/query/timefilter/get_time.ts
jloleysens added a commit that referenced this pull request Sep 14, 2021
…ilter (#110459) (#112088)

* version 1 of fix: we set the time range on the search source at CSV generation time

* updated jest tests and updated API for getSharingData

* make time range optional for getSharingData

* pivot to updating "getTime" functionality by introducing a new flag

* update jest snapshots

* update comment

* refactored coerceToAbsoluteTime -> coerceRelativeTimeToAbsoluteTime and updated behaviour to be more specific

* fix jest test

* do not change createFilter API, rather create new createRelativeFilter API, also only use this in one place in discover

* update jest tests

* update mock

* update jest test mock

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
jloleysens added a commit that referenced this pull request Sep 14, 2021
…ilter (#110459) (#112089)

* version 1 of fix: we set the time range on the search source at CSV generation time

* updated jest tests and updated API for getSharingData

* make time range optional for getSharingData

* pivot to updating "getTime" functionality by introducing a new flag

* update jest snapshots

* update comment

* refactored coerceToAbsoluteTime -> coerceRelativeTimeToAbsoluteTime and updated behaviour to be more specific

* fix jest test

* do not change createFilter API, rather create new createRelativeFilter API, also only use this in one place in discover

* update jest tests

* update mock

* update jest test mock

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	src/plugins/data/common/query/timefilter/get_time.test.ts
@kibanamachine kibanamachine added the backport missing Added to PRs automatically when the are determined to be missing a backport. label Sep 16, 2021
@kibanamachine
Copy link
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.

2 similar comments
@kibanamachine
Copy link
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.

@kibanamachine
Copy link
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.

@kibanamachine kibanamachine removed the backport missing Added to PRs automatically when the are determined to be missing a backport. label Sep 20, 2021
jloleysens added a commit that referenced this pull request Sep 20, 2021
… time filter (#110459) (#112090)

* [Discover/Reporting] Fix export that does not contain relative time filter (#110459)

* version 1 of fix: we set the time range on the search source at CSV generation time

* updated jest tests and updated API for getSharingData

* make time range optional for getSharingData

* pivot to updating "getTime" functionality by introducing a new flag

* update jest snapshots

* update comment

* refactored coerceToAbsoluteTime -> coerceRelativeTimeToAbsoluteTime and updated behaviour to be more specific

* fix jest test

* do not change createFilter API, rather create new createRelativeFilter API, also only use this in one place in discover

* update jest tests

* update mock

* update jest test mock

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	src/plugins/data/common/query/timefilter/get_time.test.ts
#	src/plugins/data/common/query/timefilter/get_time.ts

* fix types and linting

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
@kibanamachine
Copy link
Contributor

kibanamachine commented Sep 29, 2021

💔 Build Failed

Failed CI Steps


Test Failures

Kibana Pipeline / general / Chrome UI Functional Tests.test/functional/apps/visualize/_tag_cloud·ts.visualize app visualize ciGroup12 tag cloud chart should collapse the sidebar

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:00:00]         └-: visualize app
[00:00:00]           └-> "before all" hook in "visualize app"
[00:00:00]           └-> "before all" hook in "visualize app"
[00:00:00]             │ debg Starting visualize before method
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Loading "mappings.json"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Loading "data.json.gz"
[00:00:00]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_001/xC27QU2bTcagKfxs2jcK5Q] deleting index
[00:00:00]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_task_manager_8.0.0_001/hSFEJe5fSGGZef60uBtGbg] deleting index
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Deleted existing index ".kibana_8.0.0_001"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Created index ".kibana_1"
[00:00:00]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] ".kibana_1" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Indexed 1 docs into ".kibana"
[00:00:00]             │ debg Migrating saved objects
[00:00:00]             │ proc [kibana]   log   [09:48:07.567] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET. took: 3ms.
[00:00:00]             │ proc [kibana]   log   [09:48:07.569] [info][savedobjects-service] [.kibana] INIT -> WAIT_FOR_YELLOW_SOURCE. took: 7ms.
[00:00:00]             │ proc [kibana]   log   [09:48:07.572] [info][savedobjects-service] [.kibana] WAIT_FOR_YELLOW_SOURCE -> CHECK_UNKNOWN_DOCUMENTS. took: 3ms.
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_task_manager_8.0.0_001]
[00:00:00]             │ proc [kibana]   log   [09:48:07.582] [info][savedobjects-service] [.kibana] CHECK_UNKNOWN_DOCUMENTS -> SET_SOURCE_WRITE_BLOCK. took: 10ms.
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] adding block write to indices [[.kibana_1/R0tAR1TzST6UveR3xXEuVQ]]
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] completed adding block write to indices [.kibana_1]
[00:00:00]             │ proc [kibana]   log   [09:48:07.665] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY. took: 98ms.
[00:00:00]             │ proc [kibana]   log   [09:48:07.686] [info][savedobjects-service] [.kibana] SET_SOURCE_WRITE_BLOCK -> CALCULATE_EXCLUDE_FILTERS. took: 104ms.
[00:00:00]             │ proc [kibana]   log   [09:48:07.692] [info][savedobjects-service] [.kibana] CALCULATE_EXCLUDE_FILTERS -> CREATE_REINDEX_TEMP. took: 6ms.
[00:00:00]             │ proc [kibana]   log   [09:48:07.712] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE. took: 47ms.
[00:00:00]             │ proc [kibana]   log   [09:48:07.712] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 148ms
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_reindex_temp] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_8.0.0_reindex_temp]
[00:00:01]             │ proc [kibana]   log   [09:48:07.775] [info][savedobjects-service] [.kibana] CREATE_REINDEX_TEMP -> REINDEX_SOURCE_TO_TEMP_OPEN_PIT. took: 83ms.
[00:00:01]             │ proc [kibana]   log   [09:48:07.786] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_OPEN_PIT -> REINDEX_SOURCE_TO_TEMP_READ. took: 11ms.
[00:00:01]             │ proc [kibana]   log   [09:48:07.801] [info][savedobjects-service] [.kibana] Starting to process 1 documents.
[00:00:01]             │ proc [kibana]   log   [09:48:07.801] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_READ -> REINDEX_SOURCE_TO_TEMP_INDEX. took: 15ms.
[00:00:01]             │ proc [kibana]   log   [09:48:07.804] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_INDEX -> REINDEX_SOURCE_TO_TEMP_INDEX_BULK. took: 3ms.
[00:00:01]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_reindex_temp/d-jW8vU2QqelSENYYgOwow] update_mapping [_doc]
[00:00:01]             │ proc [kibana]   log   [09:48:07.845] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_INDEX_BULK -> REINDEX_SOURCE_TO_TEMP_READ. took: 41ms.
[00:00:01]             │ proc [kibana]   log   [09:48:07.856] [info][savedobjects-service] [.kibana] Processed 1 documents out of 1.
[00:00:01]             │ proc [kibana]   log   [09:48:07.857] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_READ -> REINDEX_SOURCE_TO_TEMP_CLOSE_PIT. took: 11ms.
[00:00:01]             │ proc [kibana]   log   [09:48:07.866] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_CLOSE_PIT -> SET_TEMP_WRITE_BLOCK. took: 10ms.
[00:00:01]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] adding block write to indices [[.kibana_8.0.0_reindex_temp/d-jW8vU2QqelSENYYgOwow]]
[00:00:01]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] completed adding block write to indices [.kibana_8.0.0_reindex_temp]
[00:00:01]             │ proc [kibana]   log   [09:48:07.920] [info][savedobjects-service] [.kibana] SET_TEMP_WRITE_BLOCK -> CLONE_TEMP_TO_TARGET. took: 54ms.
[00:00:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] applying create index request using existing index [.kibana_8.0.0_reindex_temp] metadata
[00:00:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_001] creating index, cause [clone_index], templates [], shards [1]/[1]
[00:00:01]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_8.0.0_001]
[00:00:01]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] create_mapping
[00:00:01]             │ proc [kibana]   log   [09:48:08.053] [info][savedobjects-service] [.kibana] CLONE_TEMP_TO_TARGET -> REFRESH_TARGET. took: 133ms.
[00:00:01]             │ proc [kibana]   log   [09:48:08.057] [info][savedobjects-service] [.kibana] REFRESH_TARGET -> OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT. took: 4ms.
[00:00:01]             │ proc [kibana]   log   [09:48:08.060] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT -> OUTDATED_DOCUMENTS_SEARCH_READ. took: 3ms.
[00:00:01]             │ proc [kibana]   log   [09:48:08.068] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_READ -> OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT. took: 8ms.
[00:00:01]             │ proc [kibana]   log   [09:48:08.071] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT -> UPDATE_TARGET_MAPPINGS. took: 3ms.
[00:00:01]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] update_mapping [_doc]
[00:00:01]             │ proc [kibana]   log   [09:48:08.147] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK. took: 76ms.
[00:00:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.tasks] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:01]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.tasks]
[00:00:01]             │ info [o.e.t.LoggingTaskListener] [node-01] 805 finished with response BulkByScrollResponse[took=20.8ms,timed_out=false,sliceId=null,updated=1,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:00:01]             │ proc [kibana]   log   [09:48:08.264] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> MARK_VERSION_INDEX_READY. took: 117ms.
[00:00:01]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_reindex_temp/d-jW8vU2QqelSENYYgOwow] deleting index
[00:00:01]             │ proc [kibana]   log   [09:48:08.304] [info][savedobjects-service] [.kibana] MARK_VERSION_INDEX_READY -> DONE. took: 40ms.
[00:00:01]             │ proc [kibana]   log   [09:48:08.305] [info][savedobjects-service] [.kibana] Migration completed after 743ms
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] Migrated Kibana index after loading Kibana data
[00:00:02]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] Ensured that default space exists in .kibana
[00:00:02]             │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyPieChartsLibrary":true}
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Loading "mappings.json"
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Loading "data.json.gz"
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.22] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.22"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.22" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.20] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.20"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.20" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.21] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.21"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.21" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:14]             │ info progress: 12027
[00:00:15]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4633 docs into "logstash-2015.09.22"
[00:00:15]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4757 docs into "logstash-2015.09.20"
[00:00:15]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4614 docs into "logstash-2015.09.21"
[00:00:15]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Loading "mappings.json"
[00:00:15]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Loading "data.json.gz"
[00:00:15]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [long-window-logstash-0] creating index, cause [api], templates [], shards [1]/[0]
[00:00:15]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Created index "long-window-logstash-0"
[00:00:15]             │ debg [test/functional/fixtures/es_archiver/long_window_logstash] "long-window-logstash-0" settings {"index":{"analysis":{"analyzer":{"makelogs_url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:25]             │ info progress: 12570
[00:00:26]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Indexed 14005 docs into "long-window-logstash-0"
[00:00:27]           └-: visualize ciGroup12
[00:00:27]             └-> "before all" hook in "visualize ciGroup12"
[00:00:27]             └-: tag cloud chart
[00:00:27]               └-> "before all" hook for "should have inspector enabled"
[00:00:27]               └-> "before all" hook for "should have inspector enabled"
[00:00:27]                 │ debg Cleaning all saved objects { space: undefined }
[00:00:27]                 │ info deleting batch of 0 objects
[00:00:27]                 │ succ deleted 0 objects
[00:00:27]                 │ debg resolved import for test/functional/fixtures/kbn_archiver/visualize.json to /dev/shm/workspace/parallel/1/kibana/test/functional/fixtures/kbn_archiver/visualize.json
[00:00:27]                 │ info importing 13 saved objects { space: undefined }
[00:00:27]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] update_mapping [_doc]
[00:00:27]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] update_mapping [_doc]
[00:00:27]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] update_mapping [_doc]
[00:00:28]                 │ succ import success
[00:00:28]                 │ debg replacing kibana config doc: {"defaultIndex":"logstash-*","format:bytes:defaultPattern":"0,0.[000]b","visualization:visualize:legacyPieChartsLibrary":true}
[00:00:29]                 │ debg navigateToApp visualize
[00:00:29]                 │ debg navigating to visualize url: http://localhost:6111/app/visualize#/
[00:00:29]                 │ debg navigate to: http://localhost:6111/app/visualize#/
[00:00:29]                 │ debg browser[INFO] http://localhost:6111/app/visualize?_t=1632908916022#/ 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:29]                 │
[00:00:29]                 │ debg browser[INFO] http://localhost:6111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:29]                 │ debg ... sleep(700) start
[00:00:30]                 │ debg ... sleep(700) end
[00:00:30]                 │ debg returned from get, calling refresh
[00:00:30]                 │ debg browser[INFO] http://localhost:6111/app/visualize?_t=1632908916022#/ 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:30]                 │
[00:00:30]                 │ debg browser[INFO] http://localhost:6111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:30]                 │ debg currentUrl = http://localhost:6111/app/visualize#/
[00:00:30]                 │          appUrl = http://localhost:6111/app/visualize#/
[00:00:30]                 │ debg TestSubjects.find(kibanaChrome)
[00:00:30]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:00:32]                 │ debg ... sleep(501) start
[00:00:33]                 │ debg ... sleep(501) end
[00:00:33]                 │ debg in navigateTo url = http://localhost:6111/app/visualize#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:00:33]                 │ debg --- retry.tryForTime error: URL changed, waiting for it to settle
[00:00:33]                 │ debg ... sleep(501) start
[00:00:34]                 │ debg ... sleep(501) end
[00:00:34]                 │ debg in navigateTo url = http://localhost:6111/app/visualize#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:00:34]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:34]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:35]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:00:36]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:36]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:36]                 │ debg TestSubjects.exists(newItemButton)
[00:00:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:00:36]                 │ debg TestSubjects.click(newItemButton)
[00:00:36]                 │ debg Find.clickByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:00:36]                 │ debg Find.findByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:00:36]                 │ debg TestSubjects.click(visGroupAggBasedExploreLink)
[00:00:36]                 │ debg Find.clickByCssSelector('[data-test-subj="visGroupAggBasedExploreLink"]') with timeout=10000
[00:00:36]                 │ debg Find.findByCssSelector('[data-test-subj="visGroupAggBasedExploreLink"]') with timeout=10000
[00:00:36]                 │ debg TestSubjects.find(visNewDialogTypes)
[00:00:36]                 │ debg Find.findByCssSelector('[data-test-subj="visNewDialogTypes"]') with timeout=10000
[00:00:36]                 │ debg clickTagCloud
[00:00:36]                 │ debg TestSubjects.click(visType-tagcloud)
[00:00:36]                 │ debg Find.clickByCssSelector('[data-test-subj="visType-tagcloud"]') with timeout=10000
[00:00:36]                 │ debg Find.findByCssSelector('[data-test-subj="visType-tagcloud"]') with timeout=10000
[00:00:36]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:36]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:38]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:00:38]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:38]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:38]                 │ debg TestSubjects.click(savedObjectTitlelogstash-*)
[00:00:38]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectTitlelogstash-*"]') with timeout=10000
[00:00:38]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitlelogstash-*"]') with timeout=10000
[00:00:38]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:38]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:38]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:38]                 │ debg browser[INFO] http://localhost:6111/app/visualize#/create?type=tagcloud&indexPattern=logstash-* 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:38]                 │
[00:00:38]                 │ debg browser[INFO] http://localhost:6111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:40]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:00:40]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.async-search] creating index, cause [auto(bulk api)], templates [], shards [1]/[0]
[00:00:40]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:40]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:40]                 │ debg Setting absolute range to Sep 19, 2015 @ 06:31:44.000 to Sep 23, 2015 @ 18:31:44.000
[00:00:40]                 │ debg TestSubjects.exists(superDatePickerToggleQuickMenuButton)
[00:00:40]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerToggleQuickMenuButton"]') with timeout=20000
[00:00:41]                 │ debg TestSubjects.exists(superDatePickerShowDatesButton)
[00:00:41]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=2500
[00:00:41]                 │ debg TestSubjects.click(superDatePickerShowDatesButton)
[00:00:41]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:00:41]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:00:41]                 │ debg TestSubjects.exists(superDatePickerstartDatePopoverButton)
[00:00:41]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=2500
[00:00:41]                 │ debg TestSubjects.click(superDatePickerendDatePopoverButton)
[00:00:41]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:00:41]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:00:41]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:00:41]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:00:41]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:00:41]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:00:41]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:00:41]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:41]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:41]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] update_mapping [_doc]
[00:00:42]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:42]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:42]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 2 attempts left
[00:00:43]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:43]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:43]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 1 attempts left
[00:00:45]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:45]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:45]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 0 attempts left
[00:00:45]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/yv7DGfQxTEW1Rl1096HiUg] update_mapping [_doc]
[00:00:46]                 │ debg --- retry.try error: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:46]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:46]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:47]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:47]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:47]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 2 attempts left
[00:00:49]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:49]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:49]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 1 attempts left
[00:00:50]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i7197b501-210a-11ec-9aba-03c891b0e3ef" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:48:48.055"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:00:50]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:50]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 0 attempts left
[00:00:50]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Sep 23, 2015 @ 18:31:44.000)
[00:00:50]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:00:50]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:50]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:51]                 │ debg TestSubjects.click(superDatePickerstartDatePopoverButton)
[00:00:51]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:00:51]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:00:51]                 │ debg Find.waitForElementStale with timeout=10000
[00:00:51]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:00:51]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:00:51]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:00:51]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:00:51]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:00:51]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:51]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:51]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Sep 19, 2015 @ 06:31:44.000)
[00:00:51]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:00:51]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:51]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:00:52]                 │ debg Waiting up to 20000ms for Timepicker popover to close...
[00:00:52]                 │ debg TestSubjects.exists(superDatePickerAbsoluteDateInput)
[00:00:52]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=2500
[00:00:52]                 │ debg --- retry.tryForTime error: [data-test-subj="superDatePickerAbsoluteDateInput"] is not displayed
[00:00:55]                 │ debg --- retry.tryForTime failed again with the same message...
[00:00:55]                 │ debg TestSubjects.exists(superDatePickerApplyTimeButton)
[00:00:55]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerApplyTimeButton"]') with timeout=2500
[00:00:58]                 │ debg --- retry.tryForTime error: [data-test-subj="superDatePickerApplyTimeButton"] is not displayed
[00:00:58]                 │ debg TestSubjects.click(querySubmitButton)
[00:00:58]                 │ debg Find.clickByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:00:58]                 │ debg Find.findByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:00:58]                 │ debg Find.waitForElementStale with timeout=10000
[00:00:58]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:58]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:59]                 │ debg select Tags
[00:00:59]                 │ debg TestSubjects.click(visEditorAdd_buckets)
[00:00:59]                 │ debg Find.clickByCssSelector('[data-test-subj="visEditorAdd_buckets"]') with timeout=10000
[00:00:59]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorAdd_buckets"]') with timeout=10000
[00:01:00]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:00]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:00]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 2 attempts left
[00:01:01]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:01]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:01]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 1 attempts left
[00:01:02]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:02]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:02]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 0 attempts left
[00:01:04]                 │ debg --- retry.try error: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:04]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:04]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorAdd_buckets"]') with timeout=10000
[00:01:05]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:05]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:05]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 2 attempts left
[00:01:06]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:06]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:06]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 1 attempts left
[00:01:08]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 444). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:08]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:08]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 0 attempts left
[00:01:09]                 │ debg TestSubjects.click(visEditorAdd_buckets_Tags)
[00:01:09]                 │ debg Find.clickByCssSelector('[data-test-subj="visEditorAdd_buckets_Tags"]') with timeout=10000
[00:01:09]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorAdd_buckets_Tags"]') with timeout=10000
[00:01:09]                 │ debg Click aggregation Terms
[00:01:09]                 │ debg Find.findByCssSelector('
[00:01:09]                 │              [data-test-subj="bucketsAggGroup"]
[00:01:09]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:01:09]                 │              
[00:01:09]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:01:09]                 │            ') with timeout=10000
[00:01:09]                 │ debg comboBox.setElement, value: Terms
[00:01:09]                 │ debg comboBox.isOptionSelected, value: Terms
[00:01:11]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:11]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Terms"]') with timeout=2500
[00:01:12]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:12]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:14]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:01:15]                 │ debg ... sleep(500) start
[00:01:15]                 │ debg ... sleep(500) end
[00:01:15]                 │ debg Click field machine.ram
[00:01:15]                 │ debg selectField machine.ram
[00:01:15]                 │ debg Find.findByCssSelector('
[00:01:15]                 │              [data-test-subj="bucketsAggGroup"]
[00:01:15]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:01:15]                 │              [data-test-subj="visAggEditorParams"]
[00:01:15]                 │              
[00:01:15]                 │              [data-test-subj="visDefaultEditorField"]
[00:01:15]                 │            ') with timeout=10000
[00:01:15]                 │ debg comboBox.setElement, value: machine.ram
[00:01:15]                 │ debg comboBox.isOptionSelected, value: machine.ram
[00:01:17]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:17]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:17]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="machine.ram"]') with timeout=2500
[00:01:18]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:18]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:20]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:01:21]                 │ debg TestSubjects.find(visEditorOrderBy2)
[00:01:21]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorOrderBy2"]') with timeout=10000
[00:01:21]                 │ debg -- isNewChartsLibraryEnabled = false
[00:01:21]                 │ debg TestSubjects.find(visualizationLoader)
[00:01:21]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:01:21]                 │ debg Before Rendering count 4
[00:01:21]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:01:21]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:01:21]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:01:21]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [5]...
[00:01:21]                 │ debg TestSubjects.find(visualizationLoader)
[00:01:21]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:01:21]                 │ debg -- currentRenderingCount=4
[00:01:21]                 │ debg -- expectedCount=5
[00:01:22]                 │ debg TestSubjects.find(visualizationLoader)
[00:01:22]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:01:22]                 │ debg -- currentRenderingCount=5
[00:01:22]                 │ debg -- expectedCount=5
[00:01:22]               └-> should have inspector enabled
[00:01:22]                 └-> "before each" hook: global before each for "should have inspector enabled"
[00:01:22]                 │ debg TestSubjects.getAttribute(openInspectorButton, disabled, tryTimeout=120000, findTimeout=10000)
[00:01:22]                 │ debg TestSubjects.find(openInspectorButton)
[00:01:22]                 │ debg Find.findByCssSelector('[data-test-subj="openInspectorButton"]') with timeout=10000
[00:01:22]                 └- ✓ pass  (25ms) "visualize app visualize ciGroup12 tag cloud chart should have inspector enabled"
[00:01:22]               └-> should show correct tag cloud data
[00:01:22]                 └-> "before each" hook: global before each for "should show correct tag cloud data"
[00:01:22]                 │ debg Waiting up to 20000ms for rendering count to stabilize...
[00:01:22]                 │ debg TestSubjects.find(visualizationLoader)
[00:01:22]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:01:22]                 │ debg -- firstCount=5
[00:01:22]                 │ debg ... sleep(2000) start
[00:01:24]                 │ debg ... sleep(2000) end
[00:01:24]                 │ debg TestSubjects.find(visualizationLoader)
[00:01:24]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:01:24]                 │ debg -- secondCount=5
[00:01:24]                 │ debg Find.allByCssSelector('text') with timeout=10000
[00:01:24]                 │ debg [
[00:01:24]                 │        '32,212,254,720',
[00:01:24]                 │        '21,474,836,480',
[00:01:24]                 │        '19,327,352,832',
[00:01:24]                 │        '20,401,094,656',
[00:01:24]                 │        '18,253,611,008'
[00:01:24]                 │      ]
[00:01:24]                 └- ✓ pass  (2.1s) "visualize app visualize ciGroup12 tag cloud chart should show correct tag cloud data"
[00:01:24]               └-> should collapse the sidebar
[00:01:24]                 └-> "before each" hook: global before each for "should collapse the sidebar"
[00:01:24]                 │ debg Find.findByCssSelector('.visEditorSidebar') with timeout=10000
[00:01:24]                 │ debg TestSubjects.click(collapseSideBarButton)
[00:01:24]                 │ debg Find.clickByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:24]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:25]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:25]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:25]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:26]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:26]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:26]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:01:28]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:28]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:28]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:01:29]                 │ debg --- retry.try error: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:29]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:29]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:30]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:30]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:30]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:32]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:32]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:32]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:01:33]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:33]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:33]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:01:34]                 │ debg --- retry.try failed again with the same message...
[00:01:35]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:36]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:36]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:36]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:37]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:37]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:37]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:01:38]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:38]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:38]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:01:40]                 │ debg --- retry.try failed again with the same message...
[00:01:40]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:41]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:41]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:41]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:43]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:43]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:43]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:01:44]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:44]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:44]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:01:45]                 │ debg --- retry.try failed again with the same message...
[00:01:46]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:47]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:47]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:47]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:48]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:48]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:48]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:01:49]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:49]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:49]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:01:51]                 │ debg --- retry.try failed again with the same message...
[00:01:51]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:52]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:52]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:52]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:53]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:53]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:53]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:01:55]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:55]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:55]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:01:56]                 │ debg --- retry.try failed again with the same message...
[00:01:57]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:01:58]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:58]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:58]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:01:59]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:01:59]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:59]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:00]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:00]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:00]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:01]                 │ debg --- retry.try failed again with the same message...
[00:02:02]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:03]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:03]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:03]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:04]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:04]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:04]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:06]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:06]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:06]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:07]                 │ debg --- retry.try failed again with the same message...
[00:02:07]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:08]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:08]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:08]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:10]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:10]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:10]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:11]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:11]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:11]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:12]                 │ debg --- retry.try failed again with the same message...
[00:02:13]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:14]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:14]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:14]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:15]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:15]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:15]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:16]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:16]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:16]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:18]                 │ debg --- retry.try failed again with the same message...
[00:02:18]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:19]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:19]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:19]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:21]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:21]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:21]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:22]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:22]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:22]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:23]                 │ debg --- retry.try failed again with the same message...
[00:02:24]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:25]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:25]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:25]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:26]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:26]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:26]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:27]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:27]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:27]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:29]                 │ debg --- retry.try failed again with the same message...
[00:02:29]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:30]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:30]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:30]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:31]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:31]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:31]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:33]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:33]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:33]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:34]                 │ debg --- retry.try failed again with the same message...
[00:02:35]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:36]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:36]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:36]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:37]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:37]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:37]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:38]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:38]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:38]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:39]                 │ debg --- retry.try failed again with the same message...
[00:02:40]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:41]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:41]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:41]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:42]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:42]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:42]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:44]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:44]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:44]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:45]                 │ debg --- retry.try failed again with the same message...
[00:02:45]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:46]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:46]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:46]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:48]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:48]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:48]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:49]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:49]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:49]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:50]                 │ debg --- retry.try failed again with the same message...
[00:02:51]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:52]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:52]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:52]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:53]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:53]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:53]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:02:54]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:54]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:54]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:02:56]                 │ debg --- retry.try failed again with the same message...
[00:02:56]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:02:57]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:57]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:57]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:02:59]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:02:59]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:59]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:03:00]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:00]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:00]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:03:01]                 │ debg --- retry.try failed again with the same message...
[00:03:02]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:03:03]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:03]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:03]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:03:04]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:04]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:04]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:03:05]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:05]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:05]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:03:06]                 │ debg --- retry.try failed again with the same message...
[00:03:07]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:03:08]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:08]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:08]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:03:09]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:09]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:09]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:03:11]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:11]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:11]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:03:12]                 │ debg --- retry.try failed again with the same message...
[00:03:12]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:03:13]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:13]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:13]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:03:15]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:15]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:15]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:03:16]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:16]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:16]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:03:17]                 │ debg --- retry.try failed again with the same message...
[00:03:18]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:03:19]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:19]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:19]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:03:20]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:20]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:20]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:03:21]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:21]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:21]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:03:23]                 │ debg --- retry.try failed again with the same message...
[00:03:23]                 │ debg Find.findByCssSelector('[data-test-subj="collapseSideBarButton"]') with timeout=10000
[00:03:24]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:24]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:24]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 2 attempts left
[00:03:26]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:26]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:26]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 1 attempts left
[00:03:27]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:27]                 │        (Session info: headless chrome=94.0.4606.61)
[00:03:27]                 │ debg finding element 'By(css selector, [data-test-subj="collapseSideBarButton"])' again, 0 attempts left
[00:03:28]                 │ debg --- retry.try failed again with the same message...
[00:03:29]                 │ info Taking screenshot "/dev/shm/workspace/parallel/1/kibana/test/functional/screenshots/failure/visualize app visualize ciGroup12 tag cloud chart should collapse the sidebar.png"
[00:03:29]                 │ info Current URL is: http://localhost:6111/app/visualize#/create?type=tagcloud&indexPattern=logstash-*&_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:%272015-09-19T06:31:44.000Z%27,to:%272015-09-23T18:31:44.000Z%27))&_a=(filters:!(),linked:!f,query:(language:kuery,query:%27%27),uiState:(),vis:(aggs:!((enabled:!t,id:%271%27,params:(),schema:metric,type:count),(enabled:!t,id:%272%27,params:(field:machine.ram,missingBucket:!f,missingBucketLabel:Missing,order:desc,orderBy:_key,otherBucket:!f,otherBucketLabel:Other,size:5),schema:segment,type:terms)),params:(maxFontSize:72,minFontSize:18,orientation:single,palette:(name:default,type:palette),scale:linear,showLabel:!t),title:%27%27,type:tagcloud))
[00:03:29]                 │ info Saving page source to: /dev/shm/workspace/parallel/1/kibana/test/functional/failure_debug/html/visualize app visualize ciGroup12 tag cloud chart should collapse the sidebar.html
[00:03:29]                 └- ✖ fail: visualize app visualize ciGroup12 tag cloud chart should collapse the sidebar
[00:03:29]                 │      retry.try timeout: ElementClickInterceptedError: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:29]                 │   (Session info: headless chrome=94.0.4606.61)
[00:03:29]                 │     at Object.throwDecodedError (/dev/shm/workspace/parallel/1/kibana/node_modules/selenium-webdriver/lib/error.js:550:15)
[00:03:29]                 │     at parseHttpResponse (/dev/shm/workspace/parallel/1/kibana/node_modules/selenium-webdriver/lib/http.js:565:13)
[00:03:29]                 │     at Executor.execute (/dev/shm/workspace/parallel/1/kibana/node_modules/selenium-webdriver/lib/http.js:491:26)
[00:03:29]                 │     at runMicrotasks (<anonymous>)
[00:03:29]                 │     at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:03:29]                 │     at Task.exec (/dev/shm/workspace/parallel/1/kibana/test/functional/services/remote/prevent_parallel_calls.ts:28:20)
[00:03:29]                 │   Error: retry.try timeout: ElementClickInterceptedError: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
[00:03:29]                 │     (Session info: headless chrome=94.0.4606.61)
[00:03:29]                 │       at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:550:15)
[00:03:29]                 │       at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:565:13)
[00:03:29]                 │       at Executor.execute (node_modules/selenium-webdriver/lib/http.js:491:26)
[00:03:29]                 │       at runMicrotasks (<anonymous>)
[00:03:29]                 │       at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:03:29]                 │       at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20)
[00:03:29]                 │       at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
[00:03:29]                 │       at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
[00:03:29]                 │       at RetryService.try (test/common/services/retry/retry.ts:31:12)
[00:03:29]                 │       at Proxy.clickByCssSelector (test/functional/services/common/find.ts:360:5)
[00:03:29]                 │       at TestSubjects.click (test/functional/services/common/test_subjects.ts:105:5)
[00:03:29]                 │       at VisualizeEditorPageObject.clickEditorSidebarCollapse (test/functional/page_objects/visualize_editor_page.ts:213:5)
[00:03:29]                 │       at Context.<anonymous> (test/functional/apps/visualize/_tag_cloud.ts:74:7)
[00:03:29]                 │       at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:03:29]                 │ 
[00:03:29]                 │ 

Stack Trace

Error: retry.try timeout: ElementClickInterceptedError: element click intercepted: Element <button class="euiButtonIcon euiButtonIcon--text euiButtonIcon--empty euiButtonIcon--xSmall visEditor__collapsibleSidebarButton" type="button" aria-expanded="true" aria-label="Toggle sidebar" data-test-subj="collapseSideBarButton">...</button> is not clickable at point (1248, 212). Other element would receive the click: <div aria-live="polite" role="region" class="euiGlobalToastList euiGlobalToastList--right" aria-label="Notification message list" data-test-subj="globalToastList">...</div>
  (Session info: headless chrome=94.0.4606.61)
    at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:550:15)
    at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:565:13)
    at Executor.execute (node_modules/selenium-webdriver/lib/http.js:491:26)
    at runMicrotasks (<anonymous>)
    at processTicksAndRejections (internal/process/task_queues.js:95:5)
    at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20)
    at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
    at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
    at RetryService.try (test/common/services/retry/retry.ts:31:12)
    at Proxy.clickByCssSelector (test/functional/services/common/find.ts:360:5)
    at TestSubjects.click (test/functional/services/common/test_subjects.ts:105:5)
    at VisualizeEditorPageObject.clickEditorSidebarCollapse (test/functional/page_objects/visualize_editor_page.ts:213:5)
    at Context.<anonymous> (test/functional/apps/visualize/_tag_cloud.ts:74:7)
    at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)

Kibana Pipeline / general / Chrome UI Functional Tests.test/functional/apps/dashboard/full_screen_mode·ts.dashboard app using current data full screen mode available in view mode

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has failed 2 times on tracked branches: https://github.com/elastic/kibana/issues/112714

[00:00:00]       │
[00:00:00]         └-: dashboard app
[00:00:00]           └-> "before all" hook in "dashboard app"
[00:00:00]           └-: using current data
[00:00:00]             └-> "before all" hook in "using current data"
[00:00:00]             └-> "before all" hook: loadCurrentData in "using current data"
[00:00:00]               │ info [test/functional/fixtures/es_archiver/logstash_functional] Unloading indices from "mappings.json"
[00:00:00]               │ info [test/functional/fixtures/es_archiver/logstash_functional] Unloading indices from "data.json.gz"
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Loading "mappings.json"
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Loading "data.json.gz"
[00:00:01]               │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [animals-dogs-2018-01-01] creating index, cause [api], templates [], shards [5]/[1]
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Created index "animals-dogs-2018-01-01"
[00:00:01]               │ debg [test/functional/fixtures/es_archiver/dashboard/current/data] "animals-dogs-2018-01-01" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:00:01]               │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [animals-dogs-2018-04-10] creating index, cause [api], templates [], shards [5]/[1]
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Created index "animals-dogs-2018-04-10"
[00:00:01]               │ debg [test/functional/fixtures/es_archiver/dashboard/current/data] "animals-dogs-2018-04-10" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:00:01]               │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [animals-cats-2018-01-01] creating index, cause [api], templates [], shards [5]/[1]
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Created index "animals-cats-2018-01-01"
[00:00:01]               │ debg [test/functional/fixtures/es_archiver/dashboard/current/data] "animals-cats-2018-01-01" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:00:01]               │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [animals-cats-2018-04-10] creating index, cause [api], templates [], shards [5]/[1]
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Created index "animals-cats-2018-04-10"
[00:00:01]               │ debg [test/functional/fixtures/es_archiver/dashboard/current/data] "animals-cats-2018-04-10" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:00:01]               │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [dogbreeds] creating index, cause [api], templates [], shards [5]/[1]
[00:00:01]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Created index "dogbreeds"
[00:00:01]               │ debg [test/functional/fixtures/es_archiver/dashboard/current/data] "dogbreeds" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:00:01]               │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-0] creating index, cause [api], templates [], shards [1]/[0]
[00:00:02]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Created index "logstash-0"
[00:00:02]               │ debg [test/functional/fixtures/es_archiver/dashboard/current/data] "logstash-0" settings {"index":{"analysis":{"analyzer":{"makelogs_url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:11]               │ info progress: 11118
[00:00:13]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Indexed 6 docs into "animals-dogs-2018-01-01"
[00:00:13]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Indexed 6 docs into "animals-dogs-2018-04-10"
[00:00:13]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Indexed 6 docs into "animals-cats-2018-01-01"
[00:00:13]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Indexed 5 docs into "animals-cats-2018-04-10"
[00:00:13]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Indexed 6 docs into "dogbreeds"
[00:00:13]               │ info [test/functional/fixtures/es_archiver/dashboard/current/data] Indexed 14005 docs into "logstash-0"
[00:00:13]             └-: full screen mode
[00:00:13]               └-> "before all" hook for "option not available in edit mode"
[00:00:13]               └-> "before all" hook for "option not available in edit mode"
[00:00:13]                 │ info [test/functional/fixtures/es_archiver/dashboard/current/kibana] Loading "mappings.json"
[00:00:13]                 │ info [test/functional/fixtures/es_archiver/dashboard/current/kibana] Loading "data.json"
[00:00:13]                 │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_task_manager_8.0.0_001/kfK0nHsGSH-AYwcPTyjBjA] deleting index
[00:00:13]                 │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_001/aSMkCSlaR9WotT8laxdQKQ] deleting index
[00:00:13]                 │ info [test/functional/fixtures/es_archiver/dashboard/current/kibana] Deleted existing index ".kibana_8.0.0_001"
[00:00:13]                 │ info [test/functional/fixtures/es_archiver/dashboard/current/kibana] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:00:13]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_001] creating index, cause [api], templates [], shards [1]/[0]
[00:00:13]                 │ info [test/functional/fixtures/es_archiver/dashboard/current/kibana] Created index ".kibana_8.0.0_001"
[00:00:13]                 │ debg [test/functional/fixtures/es_archiver/dashboard/current/kibana] ".kibana_8.0.0_001" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1","priority":"10","refresh_interval":"1s","routing_partition_size":"1"}}
[00:00:13]                 │ info [test/functional/fixtures/es_archiver/dashboard/current/kibana] Indexed 96 docs into ".kibana"
[00:00:13]                 │ debg Migrating saved objects
[00:00:13]                 │ proc [kibana]   log   [09:38:41.823] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET. took: 5ms.
[00:00:13]                 │ proc [kibana]   log   [09:38:41.828] [info][savedobjects-service] [.kibana] INIT -> OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT. took: 12ms.
[00:00:13]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:13]                 │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_task_manager_8.0.0_001]
[00:00:13]                 │ proc [kibana]   log   [09:38:41.844] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT -> OUTDATED_DOCUMENTS_SEARCH_READ. took: 16ms.
[00:00:13]                 │ proc [kibana]   log   [09:38:41.878] [info][savedobjects-service] [.kibana] Starting to process 33 documents.
[00:00:13]                 │ proc [kibana]   log   [09:38:41.879] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_READ -> OUTDATED_DOCUMENTS_TRANSFORM. took: 34ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.908] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_TRANSFORM -> TRANSFORMED_DOCUMENTS_BULK_INDEX. took: 30ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.916] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY. took: 93ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.929] [info][savedobjects-service] [.kibana] TRANSFORMED_DOCUMENTS_BULK_INDEX -> OUTDATED_DOCUMENTS_SEARCH_READ. took: 21ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.946] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_READ -> OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT. took: 17ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.954] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT -> OUTDATED_DOCUMENTS_REFRESH. took: 8ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.956] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE. took: 40ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:41.956] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 138ms
[00:00:14]                 │ proc [kibana]   log   [09:38:41.979] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_REFRESH -> UPDATE_TARGET_MAPPINGS. took: 25ms.
[00:00:14]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/DS4M1krCQ1W4ZRq7-QZ8QA] update_mapping [_doc]
[00:00:14]                 │ proc [kibana]   log   [09:38:42.073] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK. took: 94ms.
[00:00:14]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.tasks] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:14]                 │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.tasks]
[00:00:14]                 │ info [o.e.t.LoggingTaskListener] [node-01] 1703 finished with response BulkByScrollResponse[took=68.9ms,timed_out=false,sliceId=null,updated=96,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:00:14]                 │ proc [kibana]   log   [09:38:42.293] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> DONE. took: 220ms.
[00:00:14]                 │ proc [kibana]   log   [09:38:42.293] [info][savedobjects-service] [.kibana] Migration completed after 477ms
[00:00:14]                 │ debg [test/functional/fixtures/es_archiver/dashboard/current/kibana] Migrated Kibana index after loading Kibana data
[00:00:14]                 │ debg [test/functional/fixtures/es_archiver/dashboard/current/kibana] Ensured that default space exists in .kibana
[00:00:14]                 │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyPieChartsLibrary":true}
[00:00:16]                 │ debg replacing kibana config doc: {"defaultIndex":"0bf35f60-3dc9-11e8-8660-4d65aa086b3c"}
[00:00:17]                 │ debg navigating to dashboard url: http://localhost:6111/app/dashboards#/list
[00:00:17]                 │ debg navigate to: http://localhost:6111/app/dashboards#/list
[00:00:17]                 │ debg browser[INFO] http://localhost:6111/app/dashboards?_t=1632908325701#/list 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:17]                 │
[00:00:17]                 │ debg browser[INFO] http://localhost:6111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:17]                 │ debg ... sleep(700) start
[00:00:18]                 │ debg ... sleep(700) end
[00:00:18]                 │ debg returned from get, calling refresh
[00:00:19]                 │ debg browser[INFO] http://localhost:6111/app/dashboards?_t=1632908325701#/list 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:19]                 │
[00:00:19]                 │ debg browser[INFO] http://localhost:6111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:19]                 │ debg currentUrl = http://localhost:6111/app/dashboards#/list
[00:00:19]                 │          appUrl = http://localhost:6111/app/dashboards#/list
[00:00:19]                 │ debg TestSubjects.find(kibanaChrome)
[00:00:19]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:00:21]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/DS4M1krCQ1W4ZRq7-QZ8QA] update_mapping [_doc]
[00:00:21]                 │ debg ... sleep(501) start
[00:00:22]                 │ debg ... sleep(501) end
[00:00:22]                 │ debg in navigateTo url = http://localhost:6111/app/dashboards#/list?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:00:22]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:22]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:22]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:22]                 │ debg browser[INFO] http://localhost:6111/app/dashboards#/list?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now)) 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:22]                 │
[00:00:22]                 │ debg browser[INFO] http://localhost:6111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:23]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:00:24]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:24]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:24]                 │ debg Load Saved Dashboard few panels
[00:00:24]                 │ debg gotoDashboardLandingPage
[00:00:24]                 │ debg onDashboardLandingPage
[00:00:24]                 │ debg TestSubjects.exists(dashboardLandingPage)
[00:00:24]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="dashboardLandingPage"]') with timeout=5000
[00:00:24]                 │ debg searchForItemWithName: few panels
[00:00:24]                 │ debg TestSubjects.find(tableListSearchBox)
[00:00:24]                 │ debg Find.findByCssSelector('[data-test-subj="tableListSearchBox"]') with timeout=10000
[00:00:25]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:25]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:25]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:26]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:00:27]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:27]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:27]                 │ debg TestSubjects.click(dashboardListingTitleLink-few-panels)
[00:00:27]                 │ debg Find.clickByCssSelector('[data-test-subj="dashboardListingTitleLink-few-panels"]') with timeout=10000
[00:00:27]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardListingTitleLink-few-panels"]') with timeout=10000
[00:00:27]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:27]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:27]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:27]                 │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.async-search] creating index, cause [auto(bulk api)], templates [], shards [1]/[0]
[00:00:28]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:00:29]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/DS4M1krCQ1W4ZRq7-QZ8QA] update_mapping [_doc]
[00:00:29]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:29]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:29]                 │ debg TestSubjects.missingOrFail(dashboardLandingPage)
[00:00:29]                 │ debg Find.waitForDeletedByCssSelector('[data-test-subj="dashboardLandingPage"]') with timeout=10000
[00:00:29]               └-> option not available in edit mode
[00:00:29]                 └-> "before each" hook: global before each for "option not available in edit mode"
[00:00:29]                 │ debg Switching to edit mode
[00:00:29]                 │ debg TestSubjects.exists(dashboardEditMode)
[00:00:29]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="dashboardEditMode"]') with timeout=2500
[00:00:29]                 │ debg TestSubjects.click(dashboardEditMode)
[00:00:29]                 │ debg Find.clickByCssSelector('[data-test-subj="dashboardEditMode"]') with timeout=10000
[00:00:29]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardEditMode"]') with timeout=10000
[00:00:30]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButton euiButton--primary euiButton--small eui-hideFor--s eui-hideFor--xs" type="button" data-test-subj="dashboardEditMode">...</button> is not clickable at point (1220, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:30]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:30]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardEditMode"])' again, 2 attempts left
[00:00:32]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButton euiButton--primary euiButton--small eui-hideFor--s eui-hideFor--xs" type="button" data-test-subj="dashboardEditMode">...</button> is not clickable at point (1220, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:32]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:32]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardEditMode"])' again, 1 attempts left
[00:00:33]                 │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/DS4M1krCQ1W4ZRq7-QZ8QA] update_mapping [_doc]
[00:00:33]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButton euiButton--primary euiButton--small eui-hideFor--s eui-hideFor--xs" type="button" data-test-subj="dashboardEditMode">...</button> is not clickable at point (1220, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:33]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:33]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardEditMode"])' again, 0 attempts left
[00:00:34]                 │ debg --- retry.try error: element click intercepted: Element <button class="euiButton euiButton--primary euiButton--small eui-hideFor--s eui-hideFor--xs" type="button" data-test-subj="dashboardEditMode">...</button> is not clickable at point (1220, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:34]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:35]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardEditMode"]') with timeout=10000
[00:00:36]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButton euiButton--primary euiButton--small eui-hideFor--s eui-hideFor--xs" type="button" data-test-subj="dashboardEditMode">...</button> is not clickable at point (1220, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:36]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:36]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardEditMode"])' again, 2 attempts left
[00:00:37]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButton euiButton--primary euiButton--small eui-hideFor--s eui-hideFor--xs" type="button" data-test-subj="dashboardEditMode">...</button> is not clickable at point (1220, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:37]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:37]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardEditMode"])' again, 1 attempts left
[00:00:38]                 │ debg Waiting up to 20000ms for in edit mode...
[00:00:38]                 │ debg TestSubjects.findAll(embeddablePanel)
[00:00:38]                 │ debg Find.allByCssSelector('[data-test-subj="embeddablePanel"]') with timeout=2500
[00:00:38]                 │ debg TestSubjects.findAll(embeddablePanelToggleMenuIcon)
[00:00:38]                 │ debg Find.allByCssSelector('[data-test-subj="embeddablePanelToggleMenuIcon"]') with timeout=2500
[00:00:38]                 │ debg TestSubjects.exists(dashboardFullScreenMode)
[00:00:38]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="dashboardFullScreenMode"]') with timeout=2500
[00:00:41]                 │ debg --- retry.tryForTime error: [data-test-subj="dashboardFullScreenMode"] is not displayed
[00:00:41]                 └- ✓ pass  (12.2s) "dashboard app using current data full screen mode option not available in edit mode"
[00:00:41]               └-> available in view mode
[00:00:41]                 └-> "before each" hook: global before each for "available in view mode"
[00:00:41]                 │ debg TestSubjects.click(dashboardSaveMenuItem)
[00:00:41]                 │ debg Find.clickByCssSelector('[data-test-subj="dashboardSaveMenuItem"]') with timeout=10000
[00:00:41]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardSaveMenuItem"]') with timeout=10000
[00:00:42]                 │ debg TestSubjects.find(savedObjectSaveModal)
[00:00:42]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectSaveModal"]') with timeout=10000
[00:00:42]                 │ debg entering new title
[00:00:42]                 │ debg TestSubjects.setValue(savedObjectTitle, full screen test)
[00:00:42]                 │ debg TestSubjects.click(savedObjectTitle)
[00:00:42]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectTitle"]') with timeout=10000
[00:00:42]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitle"]') with timeout=10000
[00:00:42]                 │ debg TestSubjects.exists(saveAsNewCheckbox)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="saveAsNewCheckbox"]') with timeout=2500
[00:00:42]                 │ debg saveAsNewCheckbox: true
[00:00:42]                 │ debg TestSubjects.find(saveAsNewCheckbox)
[00:00:42]                 │ debg Find.findByCssSelector('[data-test-subj="saveAsNewCheckbox"]') with timeout=10000
[00:00:42]                 │ debg DashboardPage.clickSave
[00:00:42]                 │ debg TestSubjects.click(confirmSaveSavedObjectButton)
[00:00:42]                 │ debg Find.clickByCssSelector('[data-test-subj="confirmSaveSavedObjectButton"]') with timeout=10000
[00:00:42]                 │ debg Find.findByCssSelector('[data-test-subj="confirmSaveSavedObjectButton"]') with timeout=10000
[00:00:42]                 │ debg TestSubjects.exists(saveDashboardSuccess)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="saveDashboardSuccess"]') with timeout=120000
[00:00:42]                 │ debg Find.findByCssSelector('.euiToast') with timeout=60000
[00:00:43]                 │ debg Find.findByCssSelector('.euiToastHeader__title') with timeout=10000
[00:00:43]                 │ debg Find.clickByCssSelector('.euiToast__closeButton') with timeout=10000
[00:00:43]                 │ debg Find.findByCssSelector('.euiToast__closeButton') with timeout=10000
[00:00:43]                 │ debg isGlobalLoadingIndicatorVisible
[00:00:43]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:00:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:00:43]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:00:43]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:00:43]                 │ debg Waiting for save modal to close
[00:00:43]                 │ debg TestSubjects.exists(savedObjectSaveModal)
[00:00:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="savedObjectSaveModal"]') with timeout=2500
[00:00:46]                 │ debg --- retry.tryForTime error: [data-test-subj="savedObjectSaveModal"] is not displayed
[00:00:46]                 │ debg TestSubjects.exists(dashboardEditMode)
[00:00:46]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="dashboardEditMode"]') with timeout=2500
[00:00:49]                 │ debg --- retry.tryForTime error: [data-test-subj="dashboardEditMode"] is not displayed
[00:00:49]                 │ debg clickCancelOutOfEditMode
[00:00:49]                 │ debg getIsInViewMode
[00:00:49]                 │ debg TestSubjects.exists(dashboardEditMode)
[00:00:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="dashboardEditMode"]') with timeout=2500
[00:00:52]                 │ debg --- retry.tryForTime error: [data-test-subj="dashboardEditMode"] is not displayed
[00:00:52]                 │ debg Waiting up to 20000ms for leave edit mode button enabled...
[00:00:52]                 │ debg TestSubjects.find(dashboardViewOnlyMode)
[00:00:52]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:00:52]                 │ debg TestSubjects.click(dashboardViewOnlyMode)
[00:00:52]                 │ debg Find.clickByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:00:52]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:00:53]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:53]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:53]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:00:55]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:55]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:55]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:00:56]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:56]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:56]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:00:57]                 │ debg --- retry.try error: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:57]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:58]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:00:59]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:00:59]                 │        (Session info: headless chrome=94.0.4606.61)
[00:00:59]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:00]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:00]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:00]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:01]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:01]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:01]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:03]                 │ debg --- retry.try failed again with the same message...
[00:01:03]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:04]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:04]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:04]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:06]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:06]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:06]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:07]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:07]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:07]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:08]                 │ debg --- retry.try failed again with the same message...
[00:01:09]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:10]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:10]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:10]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:11]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:11]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:11]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:12]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:12]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:12]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:14]                 │ debg --- retry.try failed again with the same message...
[00:01:14]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:15]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:15]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:15]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:17]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:17]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:17]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:18]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:18]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:18]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:19]                 │ debg --- retry.try failed again with the same message...
[00:01:20]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:21]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:21]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:21]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:22]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:22]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:22]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:23]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:23]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:23]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:25]                 │ debg --- retry.try failed again with the same message...
[00:01:25]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:26]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:26]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:26]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:28]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:28]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:28]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:29]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:29]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:29]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:30]                 │ debg --- retry.try failed again with the same message...
[00:01:31]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:32]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:32]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:32]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:33]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:33]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:33]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:34]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:34]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:34]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:36]                 │ debg --- retry.try failed again with the same message...
[00:01:36]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:37]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:37]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:37]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:38]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:38]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:38]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:40]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:40]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:40]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:41]                 │ debg --- retry.try failed again with the same message...
[00:01:41]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:43]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:43]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:43]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:44]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:44]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:44]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:45]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:45]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:45]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:46]                 │ debg --- retry.try failed again with the same message...
[00:01:47]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:48]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:48]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:48]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:49]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:49]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:49]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:51]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:51]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:51]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:52]                 │ debg --- retry.try failed again with the same message...
[00:01:52]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:53]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:53]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:53]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:01:55]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:55]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:55]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:01:56]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:56]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:56]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:01:57]                 │ debg --- retry.try failed again with the same message...
[00:01:58]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:01:59]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:01:59]                 │        (Session info: headless chrome=94.0.4606.61)
[00:01:59]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:00]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:00]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:00]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:01]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:01]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:01]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:03]                 │ debg --- retry.try failed again with the same message...
[00:02:03]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:04]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:04]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:04]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:06]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:06]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:06]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:07]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:07]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:07]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:08]                 │ debg --- retry.try failed again with the same message...
[00:02:09]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:10]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:10]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:10]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:11]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:11]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:11]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:12]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:12]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:12]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:14]                 │ debg --- retry.try failed again with the same message...
[00:02:14]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:15]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:15]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:15]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:16]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:16]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:16]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:18]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:18]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:18]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:19]                 │ debg --- retry.try failed again with the same message...
[00:02:20]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:21]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:21]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:21]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:22]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:22]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:22]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:23]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:23]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:23]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:24]                 │ debg --- retry.try failed again with the same message...
[00:02:25]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:26]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:26]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:26]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:27]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:27]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:27]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:29]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:29]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:29]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:30]                 │ debg --- retry.try failed again with the same message...
[00:02:30]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:32]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:32]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:32]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:33]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:33]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:33]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:34]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:34]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:34]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:35]                 │ debg --- retry.try failed again with the same message...
[00:02:36]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:37]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:37]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:37]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:38]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:38]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:38]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:40]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:40]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:40]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:41]                 │ debg --- retry.try failed again with the same message...
[00:02:41]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:42]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:42]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:42]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:44]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:44]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:44]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:45]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:45]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:45]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:46]                 │ debg --- retry.try failed again with the same message...
[00:02:47]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:48]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:48]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:48]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:49]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:49]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:49]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:50]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:50]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:50]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:52]                 │ debg --- retry.try failed again with the same message...
[00:02:52]                 │ debg Find.findByCssSelector('[data-test-subj="dashboardViewOnlyMode"]') with timeout=10000
[00:02:53]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:53]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:53]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 2 attempts left
[00:02:55]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:55]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:55]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 1 attempts left
[00:02:56]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:56]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:56]                 │ debg finding element 'By(css selector, [data-test-subj="dashboardViewOnlyMode"])' again, 0 attempts left
[00:02:57]                 │ debg --- retry.try failed again with the same message...
[00:02:58]                 │ info Taking screenshot "/dev/shm/workspace/parallel/1/kibana/test/functional/screenshots/failure/dashboard app using current data full screen mode available in view mode.png"
[00:02:58]                 │ info Current URL is: http://localhost:6111/app/dashboards#/view/194446d0-2109-11ec-a696-4dc51b0dc798?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:02:58]                 │ info Saving page source to: /dev/shm/workspace/parallel/1/kibana/test/functional/failure_debug/html/dashboard app using current data full screen mode available in view mode.html
[00:02:58]                 └- ✖ fail: dashboard app using current data full screen mode available in view mode
[00:02:58]                 │      retry.try timeout: ElementClickInterceptedError: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:58]                 │   (Session info: headless chrome=94.0.4606.61)
[00:02:58]                 │     at Object.throwDecodedError (/dev/shm/workspace/parallel/1/kibana/node_modules/selenium-webdriver/lib/error.js:550:15)
[00:02:58]                 │     at parseHttpResponse (/dev/shm/workspace/parallel/1/kibana/node_modules/selenium-webdriver/lib/http.js:565:13)
[00:02:58]                 │     at Executor.execute (/dev/shm/workspace/parallel/1/kibana/node_modules/selenium-webdriver/lib/http.js:491:26)
[00:02:58]                 │     at runMicrotasks (<anonymous>)
[00:02:58]                 │     at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:02:58]                 │     at Task.exec (/dev/shm/workspace/parallel/1/kibana/test/functional/services/remote/prevent_parallel_calls.ts:28:20)
[00:02:58]                 │   Error: retry.try timeout: ElementClickInterceptedError: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:58]                 │     (Session info: headless chrome=94.0.4606.61)
[00:02:58]                 │       at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:550:15)
[00:02:58]                 │       at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:565:13)
[00:02:58]                 │       at Executor.execute (node_modules/selenium-webdriver/lib/http.js:491:26)
[00:02:58]                 │       at runMicrotasks (<anonymous>)
[00:02:58]                 │       at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:02:58]                 │       at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20)
[00:02:58]                 │       at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
[00:02:58]                 │       at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
[00:02:58]                 │       at RetryService.try (test/common/services/retry/retry.ts:31:12)
[00:02:58]                 │       at Proxy.clickByCssSelector (test/functional/services/common/find.ts:360:5)
[00:02:58]                 │       at TestSubjects.click (test/functional/services/common/test_subjects.ts:105:5)
[00:02:58]                 │       at DashboardPageObject.clickCancelOutOfEditMode (test/functional/page_objects/dashboard_page.ts:277:5)
[00:02:58]                 │       at DashboardPageObject.saveDashboard (test/functional/page_objects/dashboard_page.ts:417:7)
[00:02:58]                 │       at Context.<anonymous> (test/functional/apps/dashboard/full_screen_mode.ts:39:7)
[00:02:58]                 │       at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)
[00:02:58]                 │ 
[00:02:58]                 │ 

Stack Trace

Error: retry.try timeout: ElementClickInterceptedError: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small euiHeaderLink" type="button" data-test-subj="dashboardViewOnlyMode">...</button> is not clickable at point (1074, 71). Other element would receive the click: <span class="euiToastHeader__title">...</span>
  (Session info: headless chrome=94.0.4606.61)
    at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:550:15)
    at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:565:13)
    at Executor.execute (node_modules/selenium-webdriver/lib/http.js:491:26)
    at runMicrotasks (<anonymous>)
    at processTicksAndRejections (internal/process/task_queues.js:95:5)
    at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20)
    at onFailure (test/common/services/retry/retry_for_success.ts:17:9)
    at retryForSuccess (test/common/services/retry/retry_for_success.ts:57:13)
    at RetryService.try (test/common/services/retry/retry.ts:31:12)
    at Proxy.clickByCssSelector (test/functional/services/common/find.ts:360:5)
    at TestSubjects.click (test/functional/services/common/test_subjects.ts:105:5)
    at DashboardPageObject.clickCancelOutOfEditMode (test/functional/page_objects/dashboard_page.ts:277:5)
    at DashboardPageObject.saveDashboard (test/functional/page_objects/dashboard_page.ts:417:7)
    at Context.<anonymous> (test/functional/apps/dashboard/full_screen_mode.ts:39:7)
    at Object.apply (node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16)

Kibana Pipeline / general / Chrome UI Functional Tests.test/functional/apps/visualize/_data_table·ts.visualize app visualize ciGroup9 data table should allow applying changed params

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has failed 2 times on tracked branches: https://github.com/elastic/kibana/issues/112713

[00:00:00]       │
[00:00:00]         └-: visualize app
[00:00:00]           └-> "before all" hook in "visualize app"
[00:00:00]           └-> "before all" hook in "visualize app"
[00:00:00]             │ debg Starting visualize before method
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Loading "mappings.json"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Loading "data.json.gz"
[00:00:00]             │ info [o.e.x.i.IndexLifecycleTransition] [node-01] moving index [.ds-ilm-history-5-2021.09.29-000001] from [{"phase":"new","action":"complete","name":"complete"}] to [{"phase":"hot","action":"unfollow","name":"branch-check-unfollow-prerequisites"}] in policy [ilm-history-ilm-policy]
[00:00:00]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_task_manager_8.0.0_001/ziMRL0onRrKVMcrTt9WoIw] deleting index
[00:00:00]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_001/_ArJc4SaQGu5VuORV_NIQw] deleting index
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Deleted existing index ".kibana_8.0.0_001"
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:00:00]             │ info [o.e.x.i.IndexLifecycleTransition] [node-01] moving index [.ds-ilm-history-5-2021.09.29-000001] from [{"phase":"hot","action":"unfollow","name":"branch-check-unfollow-prerequisites"}] to [{"phase":"hot","action":"rollover","name":"check-rollover-ready"}] in policy [ilm-history-ilm-policy]
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Created index ".kibana_1"
[00:00:00]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] ".kibana_1" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:00:00]             │ info [test/functional/fixtures/es_archiver/empty_kibana] Indexed 1 docs into ".kibana"
[00:00:00]             │ debg Migrating saved objects
[00:00:00]             │ proc [kibana]   log   [09:45:20.813] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET. took: 8ms.
[00:00:00]             │ proc [kibana]   log   [09:45:20.815] [info][savedobjects-service] [.kibana] INIT -> WAIT_FOR_YELLOW_SOURCE. took: 11ms.
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_task_manager_8.0.0_001]
[00:00:00]             │ proc [kibana]   log   [09:45:20.825] [info][savedobjects-service] [.kibana] WAIT_FOR_YELLOW_SOURCE -> CHECK_UNKNOWN_DOCUMENTS. took: 10ms.
[00:00:00]             │ proc [kibana]   log   [09:45:20.836] [info][savedobjects-service] [.kibana] CHECK_UNKNOWN_DOCUMENTS -> SET_SOURCE_WRITE_BLOCK. took: 11ms.
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] adding block write to indices [[.kibana_1/MS4XGQoYRV2dH4l9m-qwGw]]
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] completed adding block write to indices [.kibana_1]
[00:00:00]             │ proc [kibana]   log   [09:45:20.925] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY. took: 112ms.
[00:00:00]             │ proc [kibana]   log   [09:45:20.947] [info][savedobjects-service] [.kibana] SET_SOURCE_WRITE_BLOCK -> CALCULATE_EXCLUDE_FILTERS. took: 111ms.
[00:00:00]             │ proc [kibana]   log   [09:45:20.954] [info][savedobjects-service] [.kibana] CALCULATE_EXCLUDE_FILTERS -> CREATE_REINDEX_TEMP. took: 7ms.
[00:00:00]             │ proc [kibana]   log   [09:45:20.975] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE. took: 50ms.
[00:00:00]             │ proc [kibana]   log   [09:45:20.976] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 171ms
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_reindex_temp] creating index, cause [api], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_8.0.0_reindex_temp]
[00:00:00]             │ proc [kibana]   log   [09:45:21.038] [info][savedobjects-service] [.kibana] CREATE_REINDEX_TEMP -> REINDEX_SOURCE_TO_TEMP_OPEN_PIT. took: 84ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.050] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_OPEN_PIT -> REINDEX_SOURCE_TO_TEMP_READ. took: 12ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.066] [info][savedobjects-service] [.kibana] Starting to process 1 documents.
[00:00:00]             │ proc [kibana]   log   [09:45:21.067] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_READ -> REINDEX_SOURCE_TO_TEMP_INDEX. took: 16ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.071] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_INDEX -> REINDEX_SOURCE_TO_TEMP_INDEX_BULK. took: 5ms.
[00:00:00]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_reindex_temp/JkE_ClOcRUehBj_sd0OrsA] update_mapping [_doc]
[00:00:00]             │ proc [kibana]   log   [09:45:21.115] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_INDEX_BULK -> REINDEX_SOURCE_TO_TEMP_READ. took: 44ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.128] [info][savedobjects-service] [.kibana] Processed 1 documents out of 1.
[00:00:00]             │ proc [kibana]   log   [09:45:21.129] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_READ -> REINDEX_SOURCE_TO_TEMP_CLOSE_PIT. took: 13ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.137] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_CLOSE_PIT -> SET_TEMP_WRITE_BLOCK. took: 9ms.
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] adding block write to indices [[.kibana_8.0.0_reindex_temp/JkE_ClOcRUehBj_sd0OrsA]]
[00:00:00]             │ info [o.e.c.m.MetadataIndexStateService] [node-01] completed adding block write to indices [.kibana_8.0.0_reindex_temp]
[00:00:00]             │ proc [kibana]   log   [09:45:21.191] [info][savedobjects-service] [.kibana] SET_TEMP_WRITE_BLOCK -> CLONE_TEMP_TO_TARGET. took: 54ms.
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] applying create index request using existing index [.kibana_8.0.0_reindex_temp] metadata
[00:00:00]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.kibana_8.0.0_001] creating index, cause [clone_index], templates [], shards [1]/[1]
[00:00:00]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.kibana_8.0.0_001]
[00:00:00]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/bn705s-eSlqSA-FPO4rLfQ] create_mapping
[00:00:00]             │ proc [kibana]   log   [09:45:21.331] [info][savedobjects-service] [.kibana] CLONE_TEMP_TO_TARGET -> REFRESH_TARGET. took: 140ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.335] [info][savedobjects-service] [.kibana] REFRESH_TARGET -> OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT. took: 4ms.
[00:00:00]             │ proc [kibana]   log   [09:45:21.339] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_OPEN_PIT -> OUTDATED_DOCUMENTS_SEARCH_READ. took: 4ms.
[00:00:01]             │ proc [kibana]   log   [09:45:21.351] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_READ -> OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT. took: 12ms.
[00:00:01]             │ proc [kibana]   log   [09:45:21.355] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH_CLOSE_PIT -> UPDATE_TARGET_MAPPINGS. took: 4ms.
[00:00:01]             │ info [o.e.c.m.MetadataMappingService] [node-01] [.kibana_8.0.0_001/bn705s-eSlqSA-FPO4rLfQ] update_mapping [_doc]
[00:00:01]             │ proc [kibana]   log   [09:45:21.440] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK. took: 85ms.
[00:00:01]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [.tasks] creating index, cause [auto(bulk api)], templates [], shards [1]/[1]
[00:00:01]             │ info [o.e.c.r.a.AllocationService] [node-01] updating number_of_replicas to [0] for indices [.tasks]
[00:00:01]             │ info [o.e.t.LoggingTaskListener] [node-01] 821 finished with response BulkByScrollResponse[took=22ms,timed_out=false,sliceId=null,updated=1,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:00:01]             │ proc [kibana]   log   [09:45:21.563] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> MARK_VERSION_INDEX_READY. took: 123ms.
[00:00:01]             │ info [o.e.c.m.MetadataDeleteIndexService] [node-01] [.kibana_8.0.0_reindex_temp/JkE_ClOcRUehBj_sd0OrsA] deleting index
[00:00:01]             │ proc [kibana]   log   [09:45:21.607] [info][savedobjects-service] [.kibana] MARK_VERSION_INDEX_READY -> DONE. took: 44ms.
[00:00:01]             │ proc [kibana]   log   [09:45:21.607] [info][savedobjects-service] [.kibana] Migration completed after 803ms
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] Migrated Kibana index after loading Kibana data
[00:00:01]             │ debg [test/functional/fixtures/es_archiver/empty_kibana] Ensured that default space exists in .kibana
[00:00:01]             │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyPieChartsLibrary":true}
[00:00:03]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Loading "mappings.json"
[00:00:03]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Loading "data.json.gz"
[00:00:03]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.22] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.22"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.22" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.20] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.20"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.20" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [logstash-2015.09.21] creating index, cause [api], templates [], shards [1]/[0]
[00:00:04]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Created index "logstash-2015.09.21"
[00:00:04]             │ debg [test/functional/fixtures/es_archiver/logstash_functional] "logstash-2015.09.21" settings {"index":{"analysis":{"analyzer":{"url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:13]             │ info progress: 10825
[00:00:16]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4633 docs into "logstash-2015.09.22"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4757 docs into "logstash-2015.09.20"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/logstash_functional] Indexed 4614 docs into "logstash-2015.09.21"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Loading "mappings.json"
[00:00:16]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Loading "data.json.gz"
[00:00:16]             │ info [o.e.c.m.MetadataCreateIndexService] [node-01] [long-window-logstash-0] creating index, cause [api], templates [], shards [1]/[0]
[00:00:16]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Created index "long-window-logstash-0"
[00:00:16]             │ debg [test/functional/fixtures/es_archiver/long_window_logstash] "long-window-logstash-0" settings {"index":{"analysis":{"analyzer":{"makelogs_url":{"max_token_length":"1000","tokenizer":"uax_url_email","type":"standard"}}},"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:26]             │ info progress: 12643
[00:00:27]             │ info [test/functional/fixtures/es_archiver/long_window_logstash] Indexed 14005 docs into "long-window-logstash-0"
[00:00:27]           └-: visualize ciGroup9
[00:00:27]             └-> "before all" hook in "visualize ciGroup9"
[00:01:53]             └-: data table
[00:01:53]               └-> "before all" hook for "should allow applying changed params"
[00:01:53]               └-> "before all" hook for "should allow applying changed params"
[00:01:53]                 │ debg Cleaning all saved objects { space: undefined }
[00:01:54]                 │ info deleting batch of 8 objects
[00:01:54]                 │ succ deleted 8 objects
[00:01:54]                 │ debg resolved import for test/functional/fixtures/kbn_archiver/visualize.json to /dev/shm/workspace/parallel/11/kibana/test/functional/fixtures/kbn_archiver/visualize.json
[00:01:54]                 │ info importing 13 saved objects { space: undefined }
[00:01:55]                 │ succ import success
[00:01:55]                 │ debg replacing kibana config doc: {"defaultIndex":"logstash-*","format:bytes:defaultPattern":"0,0.[000]b","visualization:visualize:legacyPieChartsLibrary":true}
[00:01:56]                 │ debg navigateToApp visualize
[00:01:56]                 │ debg navigating to visualize url: http://localhost:61111/app/visualize#/
[00:01:56]                 │ debg navigate to: http://localhost:61111/app/visualize#/
[00:01:56]                 │ debg browser[INFO] http://localhost:61111/app/visualize?_t=1632908836562#/ 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:01:56]                 │
[00:01:56]                 │ debg browser[INFO] http://localhost:61111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:56]                 │ debg ... sleep(700) start
[00:01:57]                 │ debg ... sleep(700) end
[00:01:57]                 │ debg returned from get, calling refresh
[00:01:57]                 │ debg browser[INFO] http://localhost:61111/app/visualize?_t=1632908836562#/ 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:01:57]                 │
[00:01:57]                 │ debg browser[INFO] http://localhost:61111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:57]                 │ debg currentUrl = http://localhost:61111/app/visualize#/
[00:01:57]                 │          appUrl = http://localhost:61111/app/visualize#/
[00:01:57]                 │ debg TestSubjects.find(kibanaChrome)
[00:01:57]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:58]                 │ debg ... sleep(501) start
[00:01:58]                 │ debg ... sleep(501) end
[00:01:58]                 │ debg in navigateTo url = http://localhost:61111/app/visualize#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:01:58]                 │ debg --- retry.tryForTime error: URL changed, waiting for it to settle
[00:01:59]                 │ debg ... sleep(501) start
[00:01:59]                 │ debg ... sleep(501) end
[00:01:59]                 │ debg in navigateTo url = http://localhost:61111/app/visualize#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))
[00:01:59]                 │ debg isGlobalLoadingIndicatorVisible
[00:01:59]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:59]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:01]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:01]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:01]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:01]                 │ debg TestSubjects.exists(newItemButton)
[00:02:01]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:02:01]                 │ debg TestSubjects.click(newItemButton)
[00:02:01]                 │ debg Find.clickByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:02:01]                 │ debg Find.findByCssSelector('[data-test-subj="newItemButton"]') with timeout=10000
[00:02:01]                 │ debg TestSubjects.click(visGroupAggBasedExploreLink)
[00:02:01]                 │ debg Find.clickByCssSelector('[data-test-subj="visGroupAggBasedExploreLink"]') with timeout=10000
[00:02:01]                 │ debg Find.findByCssSelector('[data-test-subj="visGroupAggBasedExploreLink"]') with timeout=10000
[00:02:02]                 │ debg TestSubjects.find(visNewDialogTypes)
[00:02:02]                 │ debg Find.findByCssSelector('[data-test-subj="visNewDialogTypes"]') with timeout=10000
[00:02:02]                 │ debg clickDataTable
[00:02:02]                 │ debg TestSubjects.click(visType-table)
[00:02:02]                 │ debg Find.clickByCssSelector('[data-test-subj="visType-table"]') with timeout=10000
[00:02:02]                 │ debg Find.findByCssSelector('[data-test-subj="visType-table"]') with timeout=10000
[00:02:02]                 │ debg isGlobalLoadingIndicatorVisible
[00:02:02]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:02]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:03]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:04]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:04]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:04]                 │ debg clickNewSearch
[00:02:04]                 │ debg TestSubjects.click(savedObjectTitlelogstash-*)
[00:02:04]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectTitlelogstash-*"]') with timeout=10000
[00:02:04]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitlelogstash-*"]') with timeout=10000
[00:02:04]                 │ debg isGlobalLoadingIndicatorVisible
[00:02:04]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:04]                 │ debg browser[INFO] http://localhost:61111/app/visualize#/create?type=table&indexPattern=logstash-* 281 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:04]                 │
[00:02:04]                 │ debg browser[INFO] http://localhost:61111/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:05]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:06]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:06]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:06]                 │ debg Setting absolute range to Sep 19, 2015 @ 06:31:44.000 to Sep 23, 2015 @ 18:31:44.000
[00:02:06]                 │ debg TestSubjects.exists(superDatePickerToggleQuickMenuButton)
[00:02:06]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerToggleQuickMenuButton"]') with timeout=20000
[00:02:06]                 │ debg TestSubjects.exists(superDatePickerShowDatesButton)
[00:02:06]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=2500
[00:02:06]                 │ debg TestSubjects.click(superDatePickerShowDatesButton)
[00:02:06]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:02:06]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:02:06]                 │ debg TestSubjects.exists(superDatePickerstartDatePopoverButton)
[00:02:06]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=2500
[00:02:06]                 │ debg TestSubjects.click(superDatePickerendDatePopoverButton)
[00:02:06]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:02:06]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:02:06]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:02:06]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:02:06]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:02:06]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:02:06]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:02:06]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:06]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:07]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:07]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:07]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 2 attempts left
[00:02:09]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:09]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:09]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 1 attempts left
[00:02:10]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:10]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:10]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 0 attempts left
[00:02:11]                 │ debg --- retry.try error: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:11]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:12]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:13]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:13]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:13]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 2 attempts left
[00:02:14]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:14]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:14]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 1 attempts left
[00:02:16]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="text" id="i41609141-210a-11ec-a3c1-af24e4fadc27" class="euiFieldText euiFieldText--compressed euiFieldText--inGroup" data-test-subj="superDatePickerAbsoluteDateInput" value="Sep 29, 2021 @ 09:47:27.166"> is not clickable at point (980, 475). Other element would receive the click: <div class="euiToastHeader" aria-label="Notification" data-test-subj="euiToastHeader">...</div>
[00:02:16]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:16]                 │ debg finding element 'By(css selector, [data-test-subj="superDatePickerAbsoluteDateInput"])' again, 0 attempts left
[00:02:16]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Sep 23, 2015 @ 18:31:44.000)
[00:02:16]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:02:16]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:16]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:16]                 │ debg TestSubjects.click(superDatePickerstartDatePopoverButton)
[00:02:16]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:02:16]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:02:16]                 │ debg Find.waitForElementStale with timeout=10000
[00:02:17]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:02:17]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:02:17]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:02:17]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:02:17]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:02:17]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:17]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:17]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Sep 19, 2015 @ 06:31:44.000)
[00:02:17]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:02:17]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:17]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:02:17]                 │ debg Waiting up to 20000ms for Timepicker popover to close...
[00:02:17]                 │ debg TestSubjects.exists(superDatePickerAbsoluteDateInput)
[00:02:17]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=2500
[00:02:17]                 │ debg --- retry.tryForTime error: [data-test-subj="superDatePickerAbsoluteDateInput"] is not displayed
[00:02:20]                 │ debg --- retry.tryForTime failed again with the same message...
[00:02:21]                 │ debg TestSubjects.exists(superDatePickerApplyTimeButton)
[00:02:21]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerApplyTimeButton"]') with timeout=2500
[00:02:23]                 │ debg --- retry.tryForTime error: [data-test-subj="superDatePickerApplyTimeButton"] is not displayed
[00:02:24]                 │ debg TestSubjects.click(querySubmitButton)
[00:02:24]                 │ debg Find.clickByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:02:24]                 │ debg Find.findByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:02:24]                 │ debg Find.waitForElementStale with timeout=10000
[00:02:24]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:24]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:24]                 │ debg Bucket = Split rows
[00:02:24]                 │ debg TestSubjects.click(visEditorAdd_buckets)
[00:02:24]                 │ debg Find.clickByCssSelector('[data-test-subj="visEditorAdd_buckets"]') with timeout=10000
[00:02:24]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorAdd_buckets"]') with timeout=10000
[00:02:25]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:25]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:25]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 2 attempts left
[00:02:26]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:26]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:26]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 1 attempts left
[00:02:28]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:28]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:28]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 0 attempts left
[00:02:29]                 │ debg --- retry.try error: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:29]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:29]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorAdd_buckets"]') with timeout=10000
[00:02:30]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:30]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:30]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 2 attempts left
[00:02:32]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:32]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:32]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 1 attempts left
[00:02:33]                 │ warn WebElementWrapper.click: element click intercepted: Element <button class="euiButtonEmpty euiButtonEmpty--primary euiButtonEmpty--small" type="button" data-test-subj="visEditorAdd_buckets" aria-label="Add bucket">...</button> is not clickable at point (1092, 476). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:33]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:33]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorAdd_buckets"])' again, 0 attempts left
[00:02:34]                 │ debg TestSubjects.click(visEditorAdd_buckets_Split rows)
[00:02:34]                 │ debg Find.clickByCssSelector('[data-test-subj="visEditorAdd_buckets_Split rows"]') with timeout=10000
[00:02:34]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorAdd_buckets_Split rows"]') with timeout=10000
[00:02:34]                 │ debg Aggregation = Histogram
[00:02:34]                 │ debg Find.findByCssSelector('
[00:02:34]                 │              [data-test-subj="bucketsAggGroup"]
[00:02:34]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:02:34]                 │              
[00:02:34]                 │              [data-test-subj="defaultEditorAggSelect"]
[00:02:34]                 │            ') with timeout=10000
[00:02:34]                 │ debg comboBox.setElement, value: Histogram
[00:02:34]                 │ debg comboBox.isOptionSelected, value: Histogram
[00:02:37]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:02:37]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:02:37]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Histogram"]') with timeout=2500
[00:02:37]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:02:37]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:02:40]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:02:40]                 │ debg ... sleep(500) start
[00:02:41]                 │ debg ... sleep(500) end
[00:02:41]                 │ debg Field = bytes
[00:02:41]                 │ debg selectField bytes
[00:02:41]                 │ debg Find.findByCssSelector('
[00:02:41]                 │              [data-test-subj="bucketsAggGroup"]
[00:02:41]                 │              [data-test-subj^="visEditorAggAccordion"].euiAccordion-isOpen
[00:02:41]                 │              [data-test-subj="visAggEditorParams"]
[00:02:41]                 │              
[00:02:41]                 │              [data-test-subj="visDefaultEditorField"]
[00:02:41]                 │            ') with timeout=10000
[00:02:41]                 │ debg comboBox.setElement, value: bytes
[00:02:41]                 │ debg comboBox.isOptionSelected, value: bytes
[00:02:43]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:02:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:02:43]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="bytes"]') with timeout=2500
[00:02:43]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:02:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:02:46]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:02:46]                 │ debg Interval = 2000
[00:02:46]                 │ debg visEditor.setInterval(2000, {numeric, 2, false})
[00:02:46]                 │ debg TestSubjects.getAttribute(visEditorIntervalSwitch2, aria-checked, tryTimeout=120000, findTimeout=10000)
[00:02:46]                 │ debg TestSubjects.find(visEditorIntervalSwitch2)
[00:02:46]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorIntervalSwitch2"]') with timeout=10000
[00:02:46]                 │ debg TestSubjects.click(visEditorIntervalSwitch2)
[00:02:46]                 │ debg Find.clickByCssSelector('[data-test-subj="visEditorIntervalSwitch2"]') with timeout=10000
[00:02:46]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorIntervalSwitch2"]') with timeout=10000
[00:02:46]                 │ debg TestSubjects.setValue(visEditorInterval2, 2000)
[00:02:46]                 │ debg TestSubjects.click(visEditorInterval2)
[00:02:46]                 │ debg Find.clickByCssSelector('[data-test-subj="visEditorInterval2"]') with timeout=10000
[00:02:46]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorInterval2"]') with timeout=10000
[00:02:46]                 │ debg -- isNewChartsLibraryEnabled = false
[00:02:46]                 │ debg TestSubjects.find(visualizationLoader)
[00:02:46]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:02:46]                 │ debg Before Rendering count 2
[00:02:46]                 │ debg TestSubjects.clickWhenNotDisabled(visualizeEditorRenderButton)
[00:02:46]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:02:46]                 │ debg Find.findByCssSelector('[data-test-subj="visualizeEditorRenderButton"]') with timeout=10000
[00:02:47]                 │ debg Waiting up to 20000ms for rendering count to be greater than or equal to [3]...
[00:02:47]                 │ debg TestSubjects.find(visualizationLoader)
[00:02:47]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:02:47]                 │ debg -- currentRenderingCount=2
[00:02:47]                 │ debg -- expectedCount=3
[00:02:47]                 │ debg TestSubjects.find(visualizationLoader)
[00:02:47]                 │ debg Find.findByCssSelector('[data-test-subj="visualizationLoader"]') with timeout=10000
[00:02:47]                 │ debg -- currentRenderingCount=3
[00:02:47]                 │ debg -- expectedCount=3
[00:02:47]               └-> should allow applying changed params
[00:02:47]                 └-> "before each" hook: global before each for "should allow applying changed params"
[00:02:47]                 │ debg visEditor.setInterval(1, {numeric, 2, true})
[00:02:47]                 │ debg TestSubjects.getAttribute(visEditorIntervalSwitch2, aria-checked, tryTimeout=120000, findTimeout=10000)
[00:02:47]                 │ debg TestSubjects.find(visEditorIntervalSwitch2)
[00:02:47]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorIntervalSwitch2"]') with timeout=10000
[00:02:47]                 │ debg TestSubjects.append(visEditorInterval2, 1)
[00:02:47]                 │ debg TestSubjects.find(visEditorInterval2)
[00:02:47]                 │ debg Find.findByCssSelector('[data-test-subj="visEditorInterval2"]') with timeout=10000
[00:02:48]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="number" min="0" placeholder="Enter an interval" class="euiFieldNumber euiFieldNumber--fullWidth euiFieldNumber--compressed" step="any" data-test-subj="visEditorInterval2" value="2000"> is not clickable at point (1069, 706). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:48]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:48]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorInterval2"])' again, 2 attempts left
[00:02:50]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="number" min="0" placeholder="Enter an interval" class="euiFieldNumber euiFieldNumber--fullWidth euiFieldNumber--compressed" step="any" data-test-subj="visEditorInterval2" value="2000"> is not clickable at point (1069, 706). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:50]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:50]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorInterval2"])' again, 1 attempts left
[00:02:51]                 │ warn WebElementWrapper.click: element click intercepted: Element <input type="number" min="0" placeholder="Enter an interval" class="euiFieldNumber euiFieldNumber--fullWidth euiFieldNumber--compressed" step="any" data-test-subj="visEditorInterval2" value="2000"> is not clickable at point (1069, 706). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:51]                 │        (Session info: headless chrome=94.0.4606.61)
[00:02:51]                 │ debg finding element 'By(css selector, [data-test-subj="visEditorInterval2"])' again, 0 attempts left
[00:02:52]                 │ info Taking screenshot "/dev/shm/workspace/parallel/11/kibana/test/functional/screenshots/failure/visualize app visualize ciGroup9 data table should allow applying changed params.png"
[00:02:53]                 │ info Current URL is: http://localhost:61111/app/visualize#/create?type=table&indexPattern=logstash-*&_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:%272015-09-19T06:31:44.000Z%27,to:%272015-09-23T18:31:44.000Z%27))&_a=(filters:!(),linked:!f,query:(language:kuery,query:%27%27),uiState:(),vis:(aggs:!((enabled:!t,id:%271%27,params:(),schema:metric,type:count),(enabled:!t,id:%272%27,params:(extended_bounds:(max:%27%27,min:%27%27),field:bytes,has_extended_bounds:!f,interval:2000,min_doc_count:!f,used_interval:2000),schema:bucket,type:histogram)),params:(perPage:10,percentageCol:%27%27,showMetricsAtAllLevels:!f,showPartialRows:!f,showToolbar:!f,showTotal:!f,totalFunc:sum),title:%27%27,type:table))
[00:02:53]                 │ info Saving page source to: /dev/shm/workspace/parallel/11/kibana/test/functional/failure_debug/html/visualize app visualize ciGroup9 data table should allow applying changed params.html
[00:02:53]                 └- ✖ fail: visualize app visualize ciGroup9 data table should allow applying changed params
[00:02:53]                 │      ElementClickInterceptedError: element click intercepted: Element <input type="number" min="0" placeholder="Enter an interval" class="euiFieldNumber euiFieldNumber--fullWidth euiFieldNumber--compressed" step="any" data-test-subj="visEditorInterval2" value="2000"> is not clickable at point (1069, 706). Other element would receive the click: <span class="euiToastHeader__title">...</span>
[00:02:53]                 │   (Session info: headless chrome=94.0.4606.61)
[00:02:53]                 │       at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:550:15)
[00:02:53]                 │       at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:565:13)
[00:02:53]                 │       at Executor.execute (node_modules/selenium-webdriver/lib/http.js:491:26)
[00:02:53]                 │       at runMicrotasks (<anonymous>)
[00:02:53]                 │       at processTicksAndRejections (internal/process/task_queues.js:95:5)
[00:02:53]                 │       at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20)
[00:02:53]                 │ 
[00:02:53]                 │ 

Stack Trace

ElementClickInterceptedError: element click intercepted: Element <input type="number" min="0" placeholder="Enter an interval" class="euiFieldNumber euiFieldNumber--fullWidth euiFieldNumber--compressed" step="any" data-test-subj="visEditorInterval2" value="2000"> is not clickable at point (1069, 706). Other element would receive the click: <span class="euiToastHeader__title">...</span>
  (Session info: headless chrome=94.0.4606.61)
    at Object.throwDecodedError (node_modules/selenium-webdriver/lib/error.js:550:15)
    at parseHttpResponse (node_modules/selenium-webdriver/lib/http.js:565:13)
    at Executor.execute (node_modules/selenium-webdriver/lib/http.js:491:26)
    at runMicrotasks (<anonymous>)
    at processTicksAndRejections (internal/process/task_queues.js:95:5)
    at Task.exec (test/functional/services/remote/prevent_parallel_calls.ts:28:20) {
  remoteStacktrace: '#0 0x5588dd2088f3 <unknown>\n' +
    '#1 0x5588dccedba8 <unknown>\n' +
    '#2 0x5588dcd2af0a <unknown>\n' +
    '#3 0x5588dcd289b4 <unknown>\n' +
    '#4 0x5588dcd2613a <unknown>\n' +
    '#5 0x5588dcd24aec <unknown>\n' +
    '#6 0x5588dcd18818 <unknown>\n' +
    '#7 0x5588dcd40e72 <unknown>\n' +
    '#8 0x5588dcd18593 <unknown>\n' +
    '#9 0x5588dcd40f7e <unknown>\n' +
    '#10 0x5588dcd53dac <unknown>\n' +
    '#11 0x5588dcd40d63 <unknown>\n' +
    '#12 0x5588dcd17144 <unknown>\n' +
    '#13 0x5588dcd18135 <unknown>\n' +
    '#14 0x5588dd237c3e <unknown>\n' +
    '#15 0x5588dd24d6b7 <unknown>\n' +
    '#16 0x5588dd238b95 <unknown>\n' +
    '#17 0x5588dd24eb05 <unknown>\n' +
    '#18 0x5588dd22d2ab <unknown>\n' +
    '#19 0x5588dd269248 <unknown>\n' +
    '#20 0x5588dd2693c8 <unknown>\n' +
    '#21 0x5588dd28433d <unknown>\n' +
    '#22 0x7fa0bbaa46db start_thread\n'
}

and 21 more failures, only showing the first 3.

Metrics [docs]

Public APIs missing comments

Total count of every public API that lacks a comment. Target amount is 0. Run node scripts/build_api_docs --plugin [yourplugin] --stats comments for more detailed information.

id before after diff
data 2738 2744 +6

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
discover 592.1KB 592.1KB +8.0B

Page load bundle

Size of the bundles that are downloaded on every page load. Target size is below 100kb

id before after diff
data 777.9KB 779.6KB +1.7KB
Unknown metric groups

API count

id before after diff
data 3099 3105 +6

History

To update your PR or re-run it, just comment with:
@elasticmachine merge upstream

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
(Deprecated) Feature:Reporting Use Reporting:Screenshot, Reporting:CSV, or Reporting:Framework instead Feature:Discover Discover Application impact:high Addressing this issue will have a high level of impact on the quality/strength of our product. loe:small Small Level of Effort release_note:fix v7.14.3 v7.15.1 v7.16.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reporting URL from Discover has no relative time range mode
7 participants