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

Surface data streams in Index Management. #67806

Merged
merged 13 commits into from
Jun 9, 2020

Conversation

cjcenizal
Copy link
Contributor

@cjcenizal cjcenizal commented May 29, 2020

Changes

  • Added Data Streams tab and table, with corresponding API. Table has reload action. Table is covered by component integration tests. API integrations tests have been disabled because they're blocked on the API for creating composable index templates.
  • Data Streams and Indices tabs are cross-linked. You can click a backing index's data stream to view it in the Data Streams tab. You can click a data stream's indices count to view its backing indices in the Indices tab. Component integration tests are WIP.
  • Added a data stream detail panel, but it's currently commented out because there's really nothing to show inside of it. In the future, I intend to add storage size and doc count information.
  • Refactored the routing service to decodePathFromReactRouter and encodePathForReactRouter methods, to make their purpose more obvious.

image

Testing

To test, create some data streams in Console and see them in Index Management.

PUT _index_template/ds-template
{
  "index_patterns": ["data-stream*"],
  "data_stream": {
    "timestamp_field": "@timestamp"
  }
}

PUT _data_stream/data-stream-test

Release note

We added a "Data Streams" tab to Index Management to help users manage their data streams.

image

@cjcenizal cjcenizal added release_note:enhancement Feature:Index Management Index and index templates UI v8.0.0 Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.9.0 labels May 29, 2020
@elasticmachine
Copy link
Contributor

Pinging @elastic/es-ui (Team:Elasticsearch UI)

@cjcenizal
Copy link
Contributor Author

@alisonelizabeth Note that we're overlapping in terms of adding the Elasticsearch client custom endpoints. So I guess whoever merges last will resolve the merge conflicts? I don't think they'll be tough to resolve.

@alisonelizabeth
Copy link
Contributor

alisonelizabeth commented May 30, 2020

Note that we're overlapping in terms of adding the Elasticsearch client custom endpoints. So I guess whoever merges last will resolve the merge conflicts? I don't think they'll be tough to resolve.

@cjcenizal I was planning on merging the component templates server side code to master, as @sebelga also is dependent on some of these changes. Let me know if you have any concerns. Related PR: #66596

@sebelga
Copy link
Contributor

sebelga commented Jun 1, 2020

@cjcenizal I am not seeing the "data_stream" parameter documented in the docs for the composable templates. https://www.elastic.co/guide/en/elasticsearch/reference/7.x/indices-templates.html

Is this known?

@cjcenizal cjcenizal force-pushed the feature/data-streams-list branch 4 times, most recently from c4e885e to 72d3fb7 Compare June 4, 2020 23:27
- Add GET data streams API endpoint.
- Render table of data streams in its own tab.
…be more fully featured than the Data Streams tab and this order will be less of a shock to users who upgrade.
@cjcenizal cjcenizal marked this pull request as ready for review June 5, 2020 21:34
@cjcenizal cjcenizal requested a review from a team as a code owner June 5, 2020 21:34
…abs.

- Refactor routing service to expose decodePathFromReactRouter and encodePathForReactRouter methods to clarify their purpose.
- Add stub data stream detail panel, with the intention to populate it with content in the future.
- Converted index_list to TS.
… Data Streams tabs. Fix TS error with API integration test.
Copy link
Contributor

@alisonelizabeth alisonelizabeth left a comment

Choose a reason for hiding this comment

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

Nice work @cjcenizal! Left a few comments but nothing blocking. Tested locally and everything worked as expected.

import { indexManagementStore } from '../../../public/application/store'; // eslint-disable-line @kbn/eslint/no-restricted-paths
import { WithAppDependencies, services, TestSubjects } from '../helpers';

const testBedConfig: TestBedConfig = {
store: () => indexManagementStore(services as any),
memoryRouter: {
initialEntries: [`/indices?includeHiddenIndices=true`],
componentRoutePath: `/:section(indices|templates)`,
componentRoutePath: `/:section(indices|data_streams)`,
Copy link
Contributor

Choose a reason for hiding this comment

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

Should this be indices|data_streams|templates?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think we'd need to add templates if these tests ever navigate to that tab, but because they don't I think we should leave it out.

store: () => indexManagementStore(services as any),
memoryRouter: {
initialEntries: [`/indices`],
componentRoutePath: `/:section(indices|data_streams)`,
Copy link
Contributor

Choose a reason for hiding this comment

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

Should this be indices|data_streams|templates?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Same reasoning here. WDYT?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Though now that I've added the link to index templates from the empty prompt, I see a reason to add it here. :)

const createDataStream = (name: string) => {
// A data stream requires an index template before it can be created.
return supertest
.post(`${API_BASE_PATH}/index-templates`)
Copy link
Contributor

Choose a reason for hiding this comment

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

Do you think it would be better to using the legacyEs to create the index template directly, instead of calling our endpoint?

Copy link
Contributor

Choose a reason for hiding this comment

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

I added it to the elasticsearch client via 78f939b (PR still in review).

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good call! Done.


describe('Data streams', function () {
// TODO: Implement this test once the API supports creating composable index templates.
describe.skip('Get', () => {
Copy link
Contributor

Choose a reason for hiding this comment

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

Does this still need to be skipped (see comment above)?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Unskipped.

onClose: () => void;
}

export const DataStreamDetailPanel: React.FunctionComponent<Props> = ({
Copy link
Contributor

Choose a reason for hiding this comment

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

Do you think it's worth adding a comment to this file that it's not currently being used and is a WIP?

<EuiEmptyPrompt
iconType="managementApp"
title={
<h1 data-test-subj="title">
Copy link
Contributor

Choose a reason for hiding this comment

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

[nit] I think we've typically added a description to the empty prompt as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Great idea! Done.

image

Copy link
Contributor

@jloleysens jloleysens left a comment

Choose a reason for hiding this comment

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

Integration with indices tab via URL looks good to me! Nice work @cjcenizal !

@@ -39,3 +33,8 @@ export const decodePath = (pathname: string): string => {
}
return decodeURIComponent(decodedPath);
};

// Need to add some additonal encoding/decoding logic to work with React Router
// For background, see: https://github.com/ReactTraining/history/issues/505
Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks for adding this!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

To be fair I think the comment was already there! I just moved it around. :)

- Add link to Index Templates from Data Streams empty prompt and component integration test.
- Extend legacy ES client with index templates API and unskip API integration test.
- Add comment to unused detail panel file.
@cjcenizal cjcenizal merged commit aec0b97 into elastic:master Jun 9, 2020
@cjcenizal cjcenizal deleted the feature/data-streams-list branch June 9, 2020 23:05
cjcenizal added a commit to cjcenizal/kibana that referenced this pull request Jun 10, 2020
# Conflicts:
#	x-pack/plugins/index_management/public/application/services/api.ts
cjcenizal added a commit that referenced this pull request Jun 10, 2020
# Conflicts:
#	x-pack/plugins/index_management/public/application/services/api.ts
gmmorris added a commit to gmmorris/kibana that referenced this pull request Jun 10, 2020
* master: (22 commits)
  Partial revert of "Sync Kerberos + Anonymous access tests with the latest `security/_authenticate` API (user roles now include roles of anonymous user)." (elastic#68624)
  adapt some snapshot test (elastic#68489)
  [APM] Service maps - Fix missing ML status for services with jobs but no anomalies (elastic#68486)
  [skip test] apis Kerberos security Kerberos authentication finishing SPNEGO should properly set cookie and authenticate user
  [SIEM][Exceptions] - ExceptionsViewer UI component part 2 (elastic#68294)
  Surface data streams in Index Management. (elastic#67806)
  Fix edit datasource not working following changes in elastic#67234 (elastic#68583)
  [Logs + Metrics UI] Clean up async plugin initialization (elastic#67654)
  APM Storybook fixes (elastic#68671)
  Upgrade EUI to v24.1.0 (elastic#68141)
  [ML] DF Analytics: Creation wizard part 2 (elastic#68462)
  [Uptime] Fix race on overview page query (elastic#67843)
  Prefer using npm_execpath when spawning Yarn (elastic#68673)
  [Security] [Cases] Attach timeline to existing case (elastic#68580)
  Use Search API in Vega (elastic#68257)
  [Component templates] Table view (elastic#68031)
  [Uptime] Added relative date info in cert status column (elastic#67612)
  [Endpoint] Re-enable Functional test case for Endpoint related pages (elastic#68445)
  run page_load_metrics tests in visual regresssion jobs (elastic#68570)
  Enable exhaustive-deps; correct any lint warnings (elastic#68453)
  ...
@kibanamachine
Copy link
Contributor

💔 Build Failed

Failed CI Steps


Test Failures

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/index_management/home_page·ts.Index Management app Home page Component templates renders the component templates tab

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:35:58]         └-: Index Management app
[00:35:58]           └-> "before all" hook
[00:35:58]           └-: Home page
[00:35:58]             └-> "before all" hook
[00:35:58]             └-> "before all" hook
[00:35:58]               │ debg navigating to indexManagement url: http://localhost:6141/app/management/data/index_management
[00:35:58]               │ debg navigate to: http://localhost:6141/app/management/data/index_management
[00:35:58]               │ debg browser[INFO] http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594145266235 341 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:35:58]               │
[00:35:58]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:35:58]               │ debg ... sleep(700) start
[00:35:59]               │ debg ... sleep(700) end
[00:35:59]               │ debg returned from get, calling refresh
[00:36:00]               │ debg browser[INFO] http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T18:07:47Z
[00:36:00]               │        Adding connection to http://localhost:6141/elasticsearch
[00:36:00]               │
[00:36:00]               │      "
[00:36:00]               │ERROR browser[SEVERE] http://localhost:6141/33721/bundles/core/core.entry.js 75:173133 TypeError: Failed to fetch
[00:36:00]               │          at Fetch._callee3$ (http://localhost:6141/33721/bundles/core/core.entry.js:26:69024)
[00:36:00]               │          at l (http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:974701)
[00:36:00]               │          at Generator._invoke (http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:974454)
[00:36:00]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:975058)
[00:36:00]               │          at fetch_asyncGeneratorStep (http://localhost:6141/33721/bundles/core/core.entry.js:26:63428)
[00:36:00]               │          at _throw (http://localhost:6141/33721/bundles/core/core.entry.js:26:63836)
[00:36:00]               │ debg browser[INFO] http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594145266235 341 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:36:00]               │
[00:36:00]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:36:01]               │ debg browser[INFO] http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T18:07:48Z
[00:36:01]               │        Adding connection to http://localhost:6141/elasticsearch
[00:36:01]               │
[00:36:01]               │      "
[00:36:01]               │ debg currentUrl = http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594145266235
[00:36:01]               │          appUrl = http://localhost:6141/app/management/data/index_management
[00:36:01]               │ debg TestSubjects.find(kibanaChrome)
[00:36:01]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:36:01]               │ debg Found login page
[00:36:01]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:36:01]               │ debg TestSubjects.click(loginUsername)
[00:36:01]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:36:01]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:36:01]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:36:01]               │ debg TestSubjects.click(loginPassword)
[00:36:01]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:36:01]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:36:01]               │ debg TestSubjects.click(loginSubmit)
[00:36:01]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:36:01]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:36:01]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:36:03]               │ debg browser[INFO] http://localhost:6141/app/management/data/index_management?_t=1594145266235 341 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:36:03]               │
[00:36:03]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:36:03]               │ debg browser[INFO] http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T18:07:50Z
[00:36:03]               │        Adding connection to http://localhost:6141/elasticsearch
[00:36:03]               │
[00:36:03]               │      "
[00:36:03]               │ debg browser[INFO] http://localhost:6141/app/management/data/index_management?_t=1594145270995 341 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:36:03]               │
[00:36:03]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:36:03]               │ debg Finished login process currentUrl = http://localhost:6141/app/management/data/index_management
[00:36:03]               │ debg ... sleep(501) start
[00:36:04]               │ debg ... sleep(501) end
[00:36:04]               │ debg in navigateTo url = http://localhost:6141/app/management/data/index_management
[00:36:04]               │ debg TestSubjects.exists(statusPageContainer)
[00:36:04]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:36:07]               │ debg browser[INFO] http://localhost:6141/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T18:07:53Z
[00:36:07]               │        Adding connection to http://localhost:6141/elasticsearch
[00:36:07]               │
[00:36:07]               │      "
[00:36:07]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:36:08]             └-> Loads the app and renders the indices tab by default
[00:36:08]               └-> "before each" hook: global before each
[00:36:08]               │ debg Checking for section heading to say Index Management.
[00:36:08]               │ debg TestSubjects.getVisibleText(appTitle)
[00:36:08]               │ debg TestSubjects.find(appTitle)
[00:36:08]               │ debg Find.findByCssSelector('[data-test-subj="appTitle"]') with timeout=10000
[00:36:08]               │ debg TestSubjects.exists(indicesList)
[00:36:08]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="indicesList"]') with timeout=2500
[00:36:08]               │ debg TestSubjects.find(reloadIndicesButton)
[00:36:08]               │ debg Find.findByCssSelector('[data-test-subj="reloadIndicesButton"]') with timeout=10000
[00:36:08]               └- ✓ pass  (137ms) "Index Management app Home page Loads the app and renders the indices tab by default"
[00:36:08]             └-: Data streams
[00:36:08]               └-> "before all" hook
[00:36:11]             └-: Component templates
[00:36:11]               └-> "before all" hook
[00:36:11]               └-> renders the component templates tab
[00:36:11]                 └-> "before each" hook: global before each
[00:36:11]                 │ debg TestSubjects.click(component_templatesTab)
[00:36:11]                 │ debg Find.clickByCssSelector('[data-test-subj="component_templatesTab"]') with timeout=10000
[00:36:11]                 │ debg Find.findByCssSelector('[data-test-subj="component_templatesTab"]') with timeout=10000
[00:36:11]                 │ debg isGlobalLoadingIndicatorVisible
[00:36:11]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:36:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:36:11]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:36:13]                 │ debg --- retry.tryForTime failed again with the same message...
[00:36:14]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:36:14]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:36:14]                 │ debg TestSubjects.exists(emptyList)
[00:36:14]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="emptyList"]') with timeout=2500
[00:36:16]                 │ debg --- retry.tryForTime error: [data-test-subj="emptyList"] is not displayed
[00:36:17]                 │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/Index Management app Home page Component templates renders the component templates tab.png"
[00:36:17]                 │ info Current URL is: http://localhost:6141/app/management/data/index_management/component_templates
[00:36:17]                 │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/Index Management app Home page Component templates renders the component templates tab.html
[00:36:17]                 └- ✖ fail: "Index Management app Home page Component templates renders the component templates tab"
[00:36:17]                 │

Stack Trace

Error: expected false to equal true
    at Assertion.assert (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:69:22)
    at Context.it (test/functional/apps/index_management/home_page.ts:86:49)

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/security/doc_level_security_roles·js.security app dls user East should only see EAST doc

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has failed 1 times on tracked branches: https://dryrun

[00:00:00]       │
[00:00:00]         └-: security app
[00:00:00]           └-> "before all" hook
[00:01:16]           └-: dls
[00:01:16]             └-> "before all" hook
[00:01:16]             └-> "before all" hook: initialize tests
[00:01:16]               │ info [empty_kibana] Loading "mappings.json"
[00:01:16]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/xK1F-rhWRCaUQdb53x6QjQ] deleting index
[00:01:16]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_1/l3_k4ky4Q8iMRCS23MvSLA] deleting index
[00:01:16]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:01:16]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:17]               │ info [empty_kibana] Created index ".kibana"
[00:01:17]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:17]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana/6VKWnJjkR_qJNYe7HVIRsQ] update_mapping [_doc]
[00:01:17]               │ debg Migrating saved objects
[00:01:17]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana/6VKWnJjkR_qJNYe7HVIRsQ] update_mapping [_doc]
[00:01:18]               │ proc [kibana]   log   [17:41:29.854] [info][savedobjects-service] Creating index .kibana_2.
[00:01:18]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:18]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:18]               │ proc [kibana]   log   [17:41:30.001] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:18]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:18]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:18]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] 2058 finished with response BulkByScrollResponse[took=38.7ms,timed_out=false,sliceId=null,updated=0,created=1,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:01:18]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana/6VKWnJjkR_qJNYe7HVIRsQ] deleting index
[00:01:18]               │ proc [kibana]   log   [17:41:30.409] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:18]               │ proc [kibana]   log   [17:41:30.426] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:18]               │ proc [kibana]   log   [17:41:30.482] [info][savedobjects-service] Finished in 630ms.
[00:01:18]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:01:18]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/Ah01QenlTAutF8_8x-ysjA] update_mapping [_doc]
[00:01:18]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/Ah01QenlTAutF8_8x-ysjA] update_mapping [_doc]
[00:01:19]               │ info [security/dlstest] Loading "mappings.json"
[00:01:19]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:19]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:19]               │ info [security/dlstest] Created index "dlstest"
[00:01:19]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:19]               │ info [security/dlstest] Indexed 2 docs into "dlstest"
[00:01:19]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:19]               │ debg navigate to: http://localhost:6151/app/management
[00:01:19]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594143691319 341 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:19]               │
[00:01:19]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:19]               │ debg ... sleep(700) start
[00:01:20]               │ debg ... sleep(700) end
[00:01:20]               │ debg returned from get, calling refresh
[00:01:22]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:41:32Z
[00:01:22]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:22]               │
[00:01:22]               │      "
[00:01:22]               │ERROR browser[SEVERE] http://localhost:6151/33721/bundles/core/core.entry.js 75:173133 TypeError: Failed to fetch
[00:01:22]               │          at Fetch._callee3$ (http://localhost:6151/33721/bundles/core/core.entry.js:26:69024)
[00:01:22]               │          at l (http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:974701)
[00:01:22]               │          at Generator._invoke (http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:974454)
[00:01:22]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:288:975058)
[00:01:22]               │          at fetch_asyncGeneratorStep (http://localhost:6151/33721/bundles/core/core.entry.js:26:63428)
[00:01:22]               │          at _throw (http://localhost:6151/33721/bundles/core/core.entry.js:26:63836)
[00:01:22]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594143691319 341 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:22]               │
[00:01:22]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:22]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:41:33Z
[00:01:22]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:22]               │
[00:01:22]               │      "
[00:01:22]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594143691319
[00:01:22]               │          appUrl = http://localhost:6151/app/management
[00:01:22]               │ debg TestSubjects.find(kibanaChrome)
[00:01:22]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:22]               │ debg Found login page
[00:01:22]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:22]               │ debg TestSubjects.click(loginUsername)
[00:01:22]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:22]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:22]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:22]               │ debg TestSubjects.click(loginPassword)
[00:01:22]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:22]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:22]               │ debg TestSubjects.click(loginSubmit)
[00:01:22]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:22]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:22]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:25]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143691319 341 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:25]               │
[00:01:25]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:25]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:41:36Z
[00:01:25]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:25]               │
[00:01:25]               │      "
[00:01:25]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143697219 341 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:25]               │
[00:01:25]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:25]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:25]               │ debg ... sleep(501) start
[00:01:26]               │ debg ... sleep(501) end
[00:01:26]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:26]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:29]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:41:39Z
[00:01:29]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:29]               │
[00:01:29]               │      "
[00:01:29]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:29]               │ debg isGlobalLoadingIndicatorVisible
[00:01:29]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:29]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:31]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:31]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:31]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:31]               │ debg clickKibanaIndexPatterns link
[00:01:31]               │ debg TestSubjects.click(indexPatterns)
[00:01:31]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:31]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:32]               │ debg isGlobalLoadingIndicatorVisible
[00:01:32]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:32]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:32]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:32]               │ debg Waiting up to 20000ms for index pattern info flyout...
[00:01:32]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:32]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:32]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:32]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:32]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:35]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:35]               │ debg isGlobalLoadingIndicatorVisible
[00:01:35]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:38]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:38]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:38]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:38]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:38]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:38]               │ debg isGlobalLoadingIndicatorVisible
[00:01:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:38]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:38]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:38]               │ debg setIndexPatternField(dlstest)
[00:01:38]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:38]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:39]               │ debg setIndexPatternField set to dlstest
[00:01:39]               │ debg ... sleep(2000) start
[00:01:41]               │ debg ... sleep(2000) end
[00:01:41]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:41]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:41]               │ debg ... sleep(2000) start
[00:01:43]               │ debg ... sleep(2000) end
[00:01:43]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:43]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:43]               │ debg isGlobalLoadingIndicatorVisible
[00:01:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:43]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:43]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:43]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/Ah01QenlTAutF8_8x-ysjA] update_mapping [_doc]
[00:01:44]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/Ah01QenlTAutF8_8x-ysjA] update_mapping [_doc]
[00:01:45]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/26830d00-c079-11ea-8957-ad7065b97114
[00:01:45]               │ debg --- retry.try error: Index pattern not created
[00:01:45]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/26830d00-c079-11ea-8957-ad7065b97114
[00:01:45]               │ debg --- retry.try failed again with the same message...
[00:01:46]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/26830d00-c079-11ea-8957-ad7065b97114#/?_a=(tab:indexedFields)
[00:01:46]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/26830d00-c079-11ea-8957-ad7065b97114#/?_a=(tab:indexedFields)
[00:01:46]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[00:01:46]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:46]               │ debg navigate to: http://localhost:6151/app/management
[00:01:46]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143718208 341 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:46]               │
[00:01:46]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:46]               │ debg ... sleep(700) start
[00:01:47]               │ debg ... sleep(700) end
[00:01:47]               │ debg returned from get, calling refresh
[00:01:48]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143718208 341 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:48]               │
[00:01:48]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:48]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:48]               │          appUrl = http://localhost:6151/app/management
[00:01:48]               │ debg TestSubjects.find(kibanaChrome)
[00:01:48]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:49]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:00Z
[00:01:49]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:49]               │
[00:01:49]               │      "
[00:01:49]               │ debg ... sleep(501) start
[00:01:49]               │ debg ... sleep(501) end
[00:01:49]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:49]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:49]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:52]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:52]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:52]               │ debg navigate to: http://localhost:6151/app/management
[00:01:53]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143724693 341 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:53]               │
[00:01:53]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:53]               │ debg ... sleep(700) start
[00:01:53]               │ debg ... sleep(700) end
[00:01:53]               │ debg returned from get, calling refresh
[00:01:54]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143724693 341 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:54]               │
[00:01:54]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:54]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:54]               │          appUrl = http://localhost:6151/app/management
[00:01:54]               │ debg TestSubjects.find(kibanaChrome)
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:55]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:07Z
[00:01:55]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:55]               │
[00:01:55]               │      "
[00:01:56]               │ debg ... sleep(501) start
[00:01:56]               │ debg ... sleep(501) end
[00:01:56]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:56]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:59]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:59]               │ debg TestSubjects.click(roles)
[00:01:59]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:59]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:59]             └-> should add new role myroleEast
[00:01:59]               └-> "before each" hook: global before each
[00:01:59]               │ debg TestSubjects.click(createRoleButton)
[00:01:59]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:59]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:02:00]               │ debg roleObj.indices[0].names = dlstest
[00:02:00]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:02:00]               │ debg TestSubjects.find(roleFormNameInput)
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:02:00]               │ debg Find.setValue('[data-test-subj="indicesInput0"] input', 'dlstest
[00:02:00]               │      ')
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"] input') with timeout=10000
[00:02:00]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:02:00]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:02:00]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:02:00]               │ debg TestSubjects.click(queryInput0)
[00:02:00]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:02:01]               │ debg TestSubjects.find(addSpacePrivilegeButton)
[00:02:01]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:02:01]               │ debg TestSubjects.find(spaceSelectorComboBox)
[00:02:01]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:02:02]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:02:02]               │ debg TestSubjects.find(basePrivilegeComboBox)
[00:02:02]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:02:02]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:02:02]               │ debg TestSubjects.find(createSpacePrivilegeButton)
[00:02:02]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:02:03]               │ debg Adding privilege read to role
[00:02:03]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:03]               │ debg Find.byButtonText('read') with timeout=10000
[00:02:04]               │ debg ... sleep(250) start
[00:02:04]               │ debg ... sleep(250) end
[00:02:04]               │ debg Adding privilege view_index_metadata to role
[00:02:04]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:04]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:02:05]               │ debg ... sleep(250) start
[00:02:05]               │ debg ... sleep(250) end
[00:02:05]               │ debg click save button
[00:02:05]               │ debg TestSubjects.click(roleFormSaveButton)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:05]               │ debg ... sleep(5000) start
[00:02:05]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] added role [myroleEast]
[00:02:10]               │ debg ... sleep(5000) end
[00:02:10]               │ debg TestSubjects.findAll(roleRow)
[00:02:10]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:02:12]               │ debg actualRoles = {"apm_system":{"rolename":"apm_system","reserved":true,"deprecated":false},"apm_user":{"rolename":"apm_user","reserved":true,"deprecated":false},"beats_admin":{"rolename":"beats_admin","reserved":true,"deprecated":false},"beats_system":{"rolename":"beats_system","reserved":true,"deprecated":false},"data_frame_transforms_admin":{"rolename":"data_frame_transforms_admin","reserved":true,"deprecated":true},"data_frame_transforms_user":{"rolename":"data_frame_transforms_user","reserved":true,"deprecated":true},"enrich_user":{"rolename":"enrich_user","reserved":true,"deprecated":false},"global_discover_read":{"rolename":"global_discover_read","reserved":false,"deprecated":false},"ingest_admin":{"rolename":"ingest_admin","reserved":true,"deprecated":false},"kibana_admin":{"rolename":"kibana_admin","reserved":true,"deprecated":false},"kibana_dashboard_only_user":{"rolename":"kibana_dashboard_only_user","reserved":true,"deprecated":true},"kibana_system":{"rolename":"kibana_system","reserved":true,"deprecated":false},"kibana_user":{"rolename":"kibana_user","reserved":true,"deprecated":true},"logstash_admin":{"rolename":"logstash_admin","reserved":true,"deprecated":false},"logstash_system":{"rolename":"logstash_system","reserved":true,"deprecated":false},"machine_learning_admin":{"rolename":"machine_learning_admin","reserved":true,"deprecated":false},"machine_learning_user":{"rolename":"machine_learning_user","reserved":true,"deprecated":false},"monitoring_user":{"rolename":"monitoring_user","reserved":true,"deprecated":false},"myroleEast":{"rolename":"myroleEast","reserved":false,"deprecated":false},"remote_monitoring_agent":{"rolename":"remote_monitoring_agent","reserved":true,"deprecated":false}}
[00:02:12]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:02:12]               └- ✓ pass  (12.7s) "security app dls should add new role myroleEast"
[00:02:12]             └-> should add new user userEAST 
[00:02:12]               └-> "before each" hook: global before each
[00:02:12]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:12]               │ debg navigate to: http://localhost:6151/app/management
[00:02:12]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143744370 341 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:12]               │
[00:02:12]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:12]               │ debg ... sleep(700) start
[00:02:13]               │ debg ... sleep(700) end
[00:02:13]               │ debg returned from get, calling refresh
[00:02:14]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143744370 341 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:14]               │
[00:02:14]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:14]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:14]               │          appUrl = http://localhost:6151/app/management
[00:02:14]               │ debg TestSubjects.find(kibanaChrome)
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:16]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:27Z
[00:02:16]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:16]               │
[00:02:16]               │      "
[00:02:16]               │ debg ... sleep(501) start
[00:02:16]               │ debg ... sleep(501) end
[00:02:16]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:16]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:16]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:19]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:19]               │ debg TestSubjects.click(users)
[00:02:19]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:19]               │ debg TestSubjects.click(createUserButton)
[00:02:19]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:20]               │ debg username = userEast
[00:02:20]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:20]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:20]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:20]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:20]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:20]               │ debg TestSubjects.click(passwordInput)
[00:02:20]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:20]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:20]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:20]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:20]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:20]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:20]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:20]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:20]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:20]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:20]               │ debg TestSubjects.setValue(userFormEmailInput, dlstest@elastic.com)
[00:02:20]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:20]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:20]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:21]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:21]               │ debg TestSubjects.find(rolesDropdown)
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:21]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:21]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.find(rolesDropdown)
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:22]               │ debg After Add role: , userObj.roleName
[00:02:22]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.findAll(userRow)
[00:02:22]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:22]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] added user [userEast]
[00:02:24]               │ debg actualUsers = {"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"dlstest@elastic.com","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:24]               └- ✓ pass  (11.8s) "security app dls should add new user userEAST "
[00:02:24]             └-> user East should only see EAST doc
[00:02:24]               └-> "before each" hook: global before each
[00:02:24]               │ debg SecurityPage.forceLogout
[00:02:24]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:24]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:24]               │ debg Redirecting to /logout to force the logout
[00:02:25]               │ debg Waiting on the login form to appear
[00:02:25]               │ debg Waiting for Login Page to appear.
[00:02:25]               │ debg Waiting up to 100000ms for login page...
[00:02:25]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594143756783 341 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:25]               │
[00:02:25]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:25]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:27]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:38Z
[00:02:27]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:27]               │
[00:02:27]               │      "
[00:02:27]               │ debg browser[INFO] http://localhost:6151/login?_t=1594143756783 341 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:27]               │
[00:02:27]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:27]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:39Z
[00:02:27]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:27]               │
[00:02:27]               │      "
[00:02:27]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:28]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:28]               │ debg navigating to login url: http://localhost:6151/login
[00:02:28]               │ debg navigate to: http://localhost:6151/login
[00:02:28]               │ debg browser[INFO] http://localhost:6151/login?_t=1594143760482 341 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:28]               │
[00:02:28]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:28]               │ debg ... sleep(700) start
[00:02:29]               │ debg ... sleep(700) end
[00:02:29]               │ debg returned from get, calling refresh
[00:02:30]               │ debg browser[INFO] http://localhost:6151/login?_t=1594143760482 341 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:30]               │
[00:02:30]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:30]               │ debg currentUrl = http://localhost:6151/login
[00:02:30]               │          appUrl = http://localhost:6151/login
[00:02:30]               │ debg TestSubjects.find(kibanaChrome)
[00:02:30]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:31]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:42Z
[00:02:31]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:31]               │
[00:02:31]               │      "
[00:02:31]               │ debg ... sleep(501) start
[00:02:31]               │ debg ... sleep(501) end
[00:02:31]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:31]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:31]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:34]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:34]               │ debg Waiting for Login Form to appear.
[00:02:34]               │ debg Waiting up to 100000ms for login form...
[00:02:34]               │ debg TestSubjects.exists(loginForm)
[00:02:34]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:34]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:34]               │ debg TestSubjects.click(loginUsername)
[00:02:34]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:34]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:34]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:34]               │ debg TestSubjects.click(loginPassword)
[00:02:34]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:34]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:35]               │ debg TestSubjects.click(loginSubmit)
[00:02:35]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:35]               │ debg Waiting for login result, expected: undefined.
[00:02:35]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:35]               │ debg TestSubjects.exists(userMenuButton)
[00:02:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:37]               │ debg browser[INFO] http://localhost:6151/app/home 341 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:37]               │
[00:02:37]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:37]               │ debg --- retry.tryForTime error: [data-test-subj="userMenuButton"] is not displayed
[00:02:38]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:49Z
[00:02:38]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:38]               │
[00:02:38]               │      "
[00:02:38]               │ debg TestSubjects.exists(userMenuButton)
[00:02:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:38]               │ debg TestSubjects.exists(userMenu)
[00:02:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:41]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:02:41]               │ debg TestSubjects.click(userMenuButton)
[00:02:41]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:42]               │ debg Waiting up to 20000ms for user menu opened...
[00:02:42]               │ debg TestSubjects.exists(userMenu)
[00:02:42]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:42]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:02:42]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:02:42]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:02:42]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:02:42]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594143773933#/ 341 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:42]               │
[00:02:42]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:42]               │ debg ... sleep(700) start
[00:02:43]               │ debg ... sleep(700) end
[00:02:43]               │ debg returned from get, calling refresh
[00:02:43]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594143773933#/ 341 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:43]               │
[00:02:43]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:43]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:02:43]               │          appUrl = http://localhost:6151/app/discover#/
[00:02:43]               │ debg TestSubjects.find(kibanaChrome)
[00:02:43]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:45]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:42:56Z
[00:02:45]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:45]               │
[00:02:45]               │      "
[00:02:45]               │ debg ... sleep(501) start
[00:02:45]               │ debg ... sleep(501) end
[00:02:45]               │ debg in navigateTo url = http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:%2726830d00-c079-11ea-8957-ad7065b97114%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:45]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:02:46]               │ debg ... sleep(501) start
[00:02:46]               │ debg ... sleep(501) end
[00:02:46]               │ debg in navigateTo url = http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:%2726830d00-c079-11ea-8957-ad7065b97114%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:46]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:49]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:49]               │ debg isGlobalLoadingIndicatorVisible
[00:02:49]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:49]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:51]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:51]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:51]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:51]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:51]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:51]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:51]               │ debg --- retry.try error: expected '2' to equal '1'
[00:02:52]               │ debg isGlobalLoadingIndicatorVisible
[00:02:52]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:53]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:54]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:54]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:54]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:54]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:54]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:54]               │ debg --- retry.try failed again with the same message...
[00:02:55]               │ debg isGlobalLoadingIndicatorVisible
[00:02:55]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:55]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:56]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:57]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:57]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:57]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:57]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:57]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:57]               │ debg --- retry.try failed again with the same message...
[00:02:57]               │ debg isGlobalLoadingIndicatorVisible
[00:02:57]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:57]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:59]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:59]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:59]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:59]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:59]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:59]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:59]               │ debg --- retry.try failed again with the same message...
[00:03:00]               │ debg isGlobalLoadingIndicatorVisible
[00:03:00]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:00]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:01]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:02]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:02]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:02]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:02]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:02]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:02]               │ debg --- retry.try failed again with the same message...
[00:03:02]               │ debg isGlobalLoadingIndicatorVisible
[00:03:02]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:02]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:04]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:04]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:04]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:04]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:04]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:04]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:04]               │ debg --- retry.try failed again with the same message...
[00:03:05]               │ debg isGlobalLoadingIndicatorVisible
[00:03:05]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:05]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:06]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:07]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:07]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:07]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:07]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:07]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:07]               │ debg --- retry.try failed again with the same message...
[00:03:07]               │ debg isGlobalLoadingIndicatorVisible
[00:03:07]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:07]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:09]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:10]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:10]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:10]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:10]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:10]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:10]               │ debg --- retry.try failed again with the same message...
[00:03:10]               │ debg isGlobalLoadingIndicatorVisible
[00:03:10]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:12]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:12]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:12]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:12]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:12]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:12]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:12]               │ debg --- retry.try failed again with the same message...
[00:03:13]               │ debg isGlobalLoadingIndicatorVisible
[00:03:13]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:13]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:14]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:15]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:15]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:15]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:15]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:15]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:15]               │ debg --- retry.try failed again with the same message...
[00:03:15]               │ debg isGlobalLoadingIndicatorVisible
[00:03:15]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:15]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:17]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:17]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:17]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:17]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:17]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:17]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:17]               │ debg --- retry.try failed again with the same message...
[00:03:18]               │ debg isGlobalLoadingIndicatorVisible
[00:03:18]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:18]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:19]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:20]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:20]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:20]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:20]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:20]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:20]               │ debg --- retry.try failed again with the same message...
[00:03:20]               │ debg isGlobalLoadingIndicatorVisible
[00:03:20]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:22]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:22]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:22]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:22]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:22]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:22]               │ debg --- retry.try failed again with the same message...
[00:03:23]               │ debg isGlobalLoadingIndicatorVisible
[00:03:23]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:25]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:25]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:25]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:25]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:25]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:25]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:25]               │ debg --- retry.try failed again with the same message...
[00:03:26]               │ debg isGlobalLoadingIndicatorVisible
[00:03:26]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:27]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:28]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:28]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:28]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:28]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:28]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:28]               │ debg --- retry.try failed again with the same message...
[00:03:28]               │ debg isGlobalLoadingIndicatorVisible
[00:03:28]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:30]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:30]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:30]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:30]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:30]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:30]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:30]               │ debg --- retry.try failed again with the same message...
[00:03:31]               │ debg isGlobalLoadingIndicatorVisible
[00:03:31]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:31]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:32]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:33]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:33]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:33]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:33]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:33]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:33]               │ debg --- retry.try failed again with the same message...
[00:03:33]               │ debg isGlobalLoadingIndicatorVisible
[00:03:33]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:35]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:35]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:35]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:35]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:35]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:35]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:35]               │ debg --- retry.try failed again with the same message...
[00:03:36]               │ debg isGlobalLoadingIndicatorVisible
[00:03:36]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:36]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:38]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:38]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:38]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:38]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:38]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:38]               │ debg --- retry.try failed again with the same message...
[00:03:38]               │ debg isGlobalLoadingIndicatorVisible
[00:03:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:40]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:41]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:41]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:41]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:41]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:41]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:41]               │ debg --- retry.try failed again with the same message...
[00:03:41]               │ debg isGlobalLoadingIndicatorVisible
[00:03:41]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:41]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:43]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:43]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:43]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:43]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:43]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:43]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:43]               │ debg --- retry.try failed again with the same message...
[00:03:44]               │ debg isGlobalLoadingIndicatorVisible
[00:03:44]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:44]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:45]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:46]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:46]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:46]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:46]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:46]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:46]               │ debg --- retry.try failed again with the same message...
[00:03:46]               │ debg isGlobalLoadingIndicatorVisible
[00:03:46]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:48]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:48]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:48]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:48]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:48]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:48]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:48]               │ debg --- retry.try failed again with the same message...
[00:03:49]               │ debg isGlobalLoadingIndicatorVisible
[00:03:49]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:49]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:50]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:51]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:51]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:51]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:51]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:51]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:51]               │ debg --- retry.try failed again with the same message...
[00:03:51]               │ debg isGlobalLoadingIndicatorVisible
[00:03:51]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:51]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:53]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:53]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:53]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:53]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:53]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:53]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:53]               │ debg --- retry.try failed again with the same message...
[00:03:54]               │ debg isGlobalLoadingIndicatorVisible
[00:03:54]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:54]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:56]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:56]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:56]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:56]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:56]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:56]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:56]               │ debg --- retry.try failed again with the same message...
[00:03:57]               │ debg isGlobalLoadingIndicatorVisible
[00:03:57]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:57]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:58]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:59]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:59]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:59]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:59]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:59]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:59]               │ debg --- retry.try failed again with the same message...
[00:03:59]               │ debg isGlobalLoadingIndicatorVisible
[00:03:59]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:59]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:01]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:01]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:01]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:01]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:01]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:01]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:01]               │ debg --- retry.try failed again with the same message...
[00:04:02]               │ debg isGlobalLoadingIndicatorVisible
[00:04:02]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:02]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:03]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:04]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:04]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:04]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:04]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:04]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:04]               │ debg --- retry.try failed again with the same message...
[00:04:04]               │ debg isGlobalLoadingIndicatorVisible
[00:04:04]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:04]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:06]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:06]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:06]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:06]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:06]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:06]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:06]               │ debg --- retry.try failed again with the same message...
[00:04:07]               │ debg isGlobalLoadingIndicatorVisible
[00:04:07]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:07]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:08]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:09]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:09]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:09]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:09]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:09]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:09]               │ debg --- retry.try failed again with the same message...
[00:04:10]               │ debg isGlobalLoadingIndicatorVisible
[00:04:10]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:11]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:12]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:12]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:12]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:12]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:12]               │ debg --- retry.try failed again with the same message...
[00:04:12]               │ debg isGlobalLoadingIndicatorVisible
[00:04:12]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:12]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:14]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:14]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:14]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:14]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:14]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:14]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:14]               │ debg --- retry.try failed again with the same message...
[00:04:15]               │ debg isGlobalLoadingIndicatorVisible
[00:04:15]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:15]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:15]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:15]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:15]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:15]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:15]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:15]               │ debg --- retry.try failed again with the same message...
[00:04:15]               │ debg isGlobalLoadingIndicatorVisible
[00:04:15]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:15]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:17]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:17]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:17]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:17]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:17]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:17]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:17]               │ debg --- retry.try failed again with the same message...
[00:04:18]               │ debg isGlobalLoadingIndicatorVisible
[00:04:18]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:18]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:19]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:20]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:20]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:20]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:20]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:20]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:20]               │ debg --- retry.try failed again with the same message...
[00:04:20]               │ debg isGlobalLoadingIndicatorVisible
[00:04:20]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:22]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:22]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:22]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:22]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:22]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:22]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:23]               │ debg --- retry.try failed again with the same message...
[00:04:23]               │ debg isGlobalLoadingIndicatorVisible
[00:04:23]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:25]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:25]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:25]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:25]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:25]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:25]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:25]               │ debg --- retry.try failed again with the same message...
[00:04:26]               │ debg isGlobalLoadingIndicatorVisible
[00:04:26]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:27]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:28]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:28]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:28]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:28]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:28]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:28]               │ debg --- retry.try failed again with the same message...
[00:04:28]               │ debg isGlobalLoadingIndicatorVisible
[00:04:28]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:30]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:30]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:30]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:30]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:30]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:30]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:30]               │ debg --- retry.try failed again with the same message...
[00:04:31]               │ debg isGlobalLoadingIndicatorVisible
[00:04:31]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:31]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:32]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:33]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:33]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:33]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:33]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:33]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:33]               │ debg --- retry.try failed again with the same message...
[00:04:33]               │ debg isGlobalLoadingIndicatorVisible
[00:04:33]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:35]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:35]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:35]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:35]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:35]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:35]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:35]               │ debg --- retry.try failed again with the same message...
[00:04:36]               │ debg isGlobalLoadingIndicatorVisible
[00:04:36]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:36]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:38]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:38]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:38]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:38]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:38]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:38]               │ debg --- retry.try failed again with the same message...
[00:04:39]               │ debg isGlobalLoadingIndicatorVisible
[00:04:39]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:39]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:40]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:41]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:41]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:41]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:41]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:41]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:41]               │ debg --- retry.try failed again with the same message...
[00:04:41]               │ debg isGlobalLoadingIndicatorVisible
[00:04:41]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:41]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:43]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:43]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:43]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:43]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:43]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:43]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:43]               │ debg --- retry.try failed again with the same message...
[00:04:44]               │ debg isGlobalLoadingIndicatorVisible
[00:04:44]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:44]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:45]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:46]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:46]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:46]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:46]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:46]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:46]               │ debg --- retry.try failed again with the same message...
[00:04:46]               │ debg isGlobalLoadingIndicatorVisible
[00:04:46]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:48]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:48]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:48]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:48]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:48]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:48]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:48]               │ debg --- retry.try failed again with the same message...
[00:04:49]               │ debg isGlobalLoadingIndicatorVisible
[00:04:49]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:49]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:50]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:51]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:51]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:51]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:51]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:51]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:51]               │ debg --- retry.try failed again with the same message...
[00:04:51]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/security app dls user East should only see EAST doc.png"
[00:04:52]               │ info Current URL is: http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:%2726830d00-c079-11ea-8957-ad7065b97114%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:04:52]               │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/security app dls user East should only see EAST doc.html
[00:04:52]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:04:52]               │

Stack Trace

Error: retry.try timeout: Error: expected '2' to equal '1'
    at Assertion.assert (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:69:22)
    at retry.try (test/functional/apps/security/doc_level_security_roles.js:76:29)
    at process._tickCallback (internal/process/next_tick.js:68:7)
    at onFailure (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:28:9)
    at retryForSuccess (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:68:13)

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/security/doc_level_security_roles·js.security app dls user East should only see EAST doc

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: security app
[00:00:00]           └-> "before all" hook
[00:01:29]           └-: dls
[00:01:29]             └-> "before all" hook
[00:01:29]             └-> "before all" hook: initialize tests
[00:01:29]               │ info [empty_kibana] Loading "mappings.json"
[00:01:30]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_1/dA0Gi7ggS7Si0n5RSq3-ww] deleting index
[00:01:30]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/EhUGwZSGRmOe6EyjCNIeJQ] deleting index
[00:01:30]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:01:30]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:30]               │ info [empty_kibana] Created index ".kibana"
[00:01:30]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:30]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana/SlCcN-VPTX-xnAhdhnV2Sg] update_mapping [_doc]
[00:01:30]               │ debg Migrating saved objects
[00:01:30]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana/SlCcN-VPTX-xnAhdhnV2Sg] update_mapping [_doc]
[00:01:31]               │ proc [kibana]   log   [17:33:42.221] [info][savedobjects-service] Creating index .kibana_2.
[00:01:31]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:31]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:31]               │ proc [kibana]   log   [17:33:42.321] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:31]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:31]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:31]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] 2161 finished with response BulkByScrollResponse[took=47.4ms,timed_out=false,sliceId=null,updated=0,created=1,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:01:31]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana/SlCcN-VPTX-xnAhdhnV2Sg] deleting index
[00:01:31]               │ proc [kibana]   log   [17:33:42.731] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:31]               │ proc [kibana]   log   [17:33:42.775] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:31]               │ proc [kibana]   log   [17:33:42.831] [info][savedobjects-service] Finished in 613ms.
[00:01:31]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:01:31]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/-dv2nA3pSD-FS1QLkKSE9Q] update_mapping [_doc]
[00:01:31]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/-dv2nA3pSD-FS1QLkKSE9Q] update_mapping [_doc]
[00:01:32]               │ info [security/dlstest] Loading "mappings.json"
[00:01:32]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:32]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:32]               │ info [security/dlstest] Created index "dlstest"
[00:01:32]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:32]               │ info [security/dlstest] Indexed 2 docs into "dlstest"
[00:01:32]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:32]               │ debg navigate to: http://localhost:6151/app/management
[00:01:32]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594143223668 341 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:32]               │
[00:01:32]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:32]               │ debg ... sleep(700) start
[00:01:33]               │ debg ... sleep(700) end
[00:01:33]               │ debg returned from get, calling refresh
[00:01:35]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:33:45Z
[00:01:35]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:35]               │
[00:01:35]               │      "
[00:01:35]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594143223668 341 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:35]               │
[00:01:35]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:35]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:33:46Z
[00:01:35]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:35]               │
[00:01:35]               │      "
[00:01:35]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594143223668
[00:01:35]               │          appUrl = http://localhost:6151/app/management
[00:01:35]               │ debg TestSubjects.find(kibanaChrome)
[00:01:35]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:35]               │ debg Found login page
[00:01:35]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:35]               │ debg TestSubjects.click(loginUsername)
[00:01:35]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:35]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:36]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:36]               │ debg TestSubjects.click(loginPassword)
[00:01:36]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:36]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:36]               │ debg TestSubjects.click(loginSubmit)
[00:01:36]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:36]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:36]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:39]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143223668 341 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:39]               │
[00:01:39]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:39]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:33:49Z
[00:01:39]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:39]               │
[00:01:39]               │      "
[00:01:39]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143230122 341 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:39]               │
[00:01:39]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:39]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:39]               │ debg ... sleep(501) start
[00:01:39]               │ debg ... sleep(501) end
[00:01:40]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:40]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:42]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:33:52Z
[00:01:42]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:42]               │
[00:01:42]               │      "
[00:01:42]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:43]               │ debg isGlobalLoadingIndicatorVisible
[00:01:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:45]               │ debg clickKibanaIndexPatterns link
[00:01:45]               │ debg TestSubjects.click(indexPatterns)
[00:01:45]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:45]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:45]               │ debg isGlobalLoadingIndicatorVisible
[00:01:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:46]               │ debg Waiting up to 20000ms for index pattern info flyout...
[00:01:46]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:46]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:46]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:46]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:46]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:49]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:49]               │ debg isGlobalLoadingIndicatorVisible
[00:01:49]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:49]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:51]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:51]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:51]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:51]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:51]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:51]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:52]               │ debg isGlobalLoadingIndicatorVisible
[00:01:52]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:52]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:52]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:52]               │ debg setIndexPatternField(dlstest)
[00:01:52]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:52]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:53]               │ debg setIndexPatternField set to dlstest
[00:01:53]               │ debg ... sleep(2000) start
[00:01:55]               │ debg ... sleep(2000) end
[00:01:55]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:55]               │ debg ... sleep(2000) start
[00:01:57]               │ debg ... sleep(2000) end
[00:01:57]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:57]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:57]               │ debg isGlobalLoadingIndicatorVisible
[00:01:57]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:57]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:57]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:57]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:57]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/-dv2nA3pSD-FS1QLkKSE9Q] update_mapping [_doc]
[00:01:58]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] [.kibana_2/-dv2nA3pSD-FS1QLkKSE9Q] update_mapping [_doc]
[00:01:59]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/103e0550-c078-11ea-89b5-87440bcfd3ef
[00:01:59]               │ debg --- retry.try error: Index pattern not created
[00:01:59]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/103e0550-c078-11ea-89b5-87440bcfd3ef
[00:01:59]               │ debg --- retry.try failed again with the same message...
[00:02:00]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/103e0550-c078-11ea-89b5-87440bcfd3ef#/?_a=(tab:indexedFields)
[00:02:00]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/103e0550-c078-11ea-89b5-87440bcfd3ef#/?_a=(tab:indexedFields)
[00:02:00]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[00:02:00]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:00]               │ debg navigate to: http://localhost:6151/app/management
[00:02:00]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143251612 341 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:00]               │
[00:02:00]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:00]               │ debg ... sleep(700) start
[00:02:01]               │ debg ... sleep(700) end
[00:02:01]               │ debg returned from get, calling refresh
[00:02:02]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143251612 341 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:02]               │
[00:02:02]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:02]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:02]               │          appUrl = http://localhost:6151/app/management
[00:02:02]               │ debg TestSubjects.find(kibanaChrome)
[00:02:02]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:04]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:34:15Z
[00:02:04]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:04]               │
[00:02:04]               │      "
[00:02:04]               │ debg ... sleep(501) start
[00:02:05]               │ debg ... sleep(501) end
[00:02:05]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:05]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:05]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:07]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:08]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:08]               │ debg navigate to: http://localhost:6151/app/management
[00:02:08]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143259493 341 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:08]               │
[00:02:08]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:08]               │ debg ... sleep(700) start
[00:02:09]               │ debg ... sleep(700) end
[00:02:09]               │ debg returned from get, calling refresh
[00:02:11]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143259493 341 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:11]               │
[00:02:11]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:11]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:11]               │          appUrl = http://localhost:6151/app/management
[00:02:11]               │ debg TestSubjects.find(kibanaChrome)
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:12]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:34:23Z
[00:02:12]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:12]               │
[00:02:12]               │      "
[00:02:12]               │ debg ... sleep(501) start
[00:02:12]               │ debg ... sleep(501) end
[00:02:12]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:12]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:12]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:15]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:15]               │ debg TestSubjects.click(roles)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:16]             └-> should add new role myroleEast
[00:02:16]               └-> "before each" hook: global before each
[00:02:16]               │ debg TestSubjects.click(createRoleButton)
[00:02:16]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:02:16]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:02:16]               │ debg roleObj.indices[0].names = dlstest
[00:02:16]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:02:16]               │ debg TestSubjects.find(roleFormNameInput)
[00:02:16]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:02:17]               │ debg Find.setValue('[data-test-subj="indicesInput0"] input', 'dlstest
[00:02:17]               │      ')
[00:02:17]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"] input') with timeout=10000
[00:02:17]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:02:17]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:02:17]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:02:17]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:02:17]               │ debg TestSubjects.click(queryInput0)
[00:02:17]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:02:17]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:02:18]               │ debg TestSubjects.find(addSpacePrivilegeButton)
[00:02:18]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:02:18]               │ debg TestSubjects.find(spaceSelectorComboBox)
[00:02:18]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:02:18]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:02:19]               │ debg TestSubjects.find(basePrivilegeComboBox)
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:02:19]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:02:19]               │ debg TestSubjects.find(createSpacePrivilegeButton)
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:02:19]               │ debg Adding privilege read to role
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:20]               │ debg Find.byButtonText('read') with timeout=10000
[00:02:20]               │ debg ... sleep(250) start
[00:02:21]               │ debg ... sleep(250) end
[00:02:21]               │ debg Adding privilege view_index_metadata to role
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:21]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:02:22]               │ debg ... sleep(250) start
[00:02:22]               │ debg ... sleep(250) end
[00:02:22]               │ debg click save button
[00:02:22]               │ debg TestSubjects.click(roleFormSaveButton)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:22]               │ debg ... sleep(5000) start
[00:02:22]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] added role [myroleEast]
[00:02:27]               │ debg ... sleep(5000) end
[00:02:27]               │ debg TestSubjects.findAll(roleRow)
[00:02:27]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:02:30]               │ debg actualRoles = {"apm_system":{"rolename":"apm_system","reserved":true,"deprecated":false},"apm_user":{"rolename":"apm_user","reserved":true,"deprecated":false},"beats_admin":{"rolename":"beats_admin","reserved":true,"deprecated":false},"beats_system":{"rolename":"beats_system","reserved":true,"deprecated":false},"data_frame_transforms_admin":{"rolename":"data_frame_transforms_admin","reserved":true,"deprecated":true},"data_frame_transforms_user":{"rolename":"data_frame_transforms_user","reserved":true,"deprecated":true},"enrich_user":{"rolename":"enrich_user","reserved":true,"deprecated":false},"global_discover_read":{"rolename":"global_discover_read","reserved":false,"deprecated":false},"ingest_admin":{"rolename":"ingest_admin","reserved":true,"deprecated":false},"kibana_admin":{"rolename":"kibana_admin","reserved":true,"deprecated":false},"kibana_dashboard_only_user":{"rolename":"kibana_dashboard_only_user","reserved":true,"deprecated":true},"kibana_system":{"rolename":"kibana_system","reserved":true,"deprecated":false},"kibana_user":{"rolename":"kibana_user","reserved":true,"deprecated":true},"logstash_admin":{"rolename":"logstash_admin","reserved":true,"deprecated":false},"logstash_system":{"rolename":"logstash_system","reserved":true,"deprecated":false},"machine_learning_admin":{"rolename":"machine_learning_admin","reserved":true,"deprecated":false},"machine_learning_user":{"rolename":"machine_learning_user","reserved":true,"deprecated":false},"monitoring_user":{"rolename":"monitoring_user","reserved":true,"deprecated":false},"myroleEast":{"rolename":"myroleEast","reserved":false,"deprecated":false},"remote_monitoring_agent":{"rolename":"remote_monitoring_agent","reserved":true,"deprecated":false}}
[00:02:30]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:02:30]               └- ✓ pass  (14.1s) "security app dls should add new role myroleEast"
[00:02:30]             └-> should add new user userEAST 
[00:02:30]               └-> "before each" hook: global before each
[00:02:30]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:30]               │ debg navigate to: http://localhost:6151/app/management
[00:02:30]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143281524 341 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:30]               │
[00:02:30]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:30]               │ debg ... sleep(700) start
[00:02:31]               │ debg ... sleep(700) end
[00:02:31]               │ debg returned from get, calling refresh
[00:02:32]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594143281524 341 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:32]               │
[00:02:32]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:32]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:32]               │          appUrl = http://localhost:6151/app/management
[00:02:32]               │ debg TestSubjects.find(kibanaChrome)
[00:02:32]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:34]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:34:45Z
[00:02:34]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:34]               │
[00:02:34]               │      "
[00:02:34]               │ debg ... sleep(501) start
[00:02:35]               │ debg ... sleep(501) end
[00:02:35]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:35]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:37]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:38]               │ debg TestSubjects.click(users)
[00:02:38]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:38]               │ debg TestSubjects.click(createUserButton)
[00:02:38]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:38]               │ debg username = userEast
[00:02:38]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:38]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:38]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:39]               │ debg TestSubjects.click(passwordInput)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:39]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:39]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.setValue(userFormEmailInput, dlstest@elastic.com)
[00:02:39]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:40]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:40]               │ debg TestSubjects.find(rolesDropdown)
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:40]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:40]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:40]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:40]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:40]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:40]               │ debg TestSubjects.find(rolesDropdown)
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:41]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:41]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:41]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:41]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:41]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:41]               │ debg After Add role: , userObj.roleName
[00:02:41]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:41]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:41]               │ debg TestSubjects.findAll(userRow)
[00:02:41]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:41]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-centos-tests-xl-1594140450844588475] added user [userEast]
[00:02:44]               │ debg actualUsers = {"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"dlstest@elastic.com","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:44]               └- ✓ pass  (14.0s) "security app dls should add new user userEAST "
[00:02:44]             └-> user East should only see EAST doc
[00:02:44]               └-> "before each" hook: global before each
[00:02:44]               │ debg SecurityPage.forceLogout
[00:02:44]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:44]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:45]               │ debg Redirecting to /logout to force the logout
[00:02:45]               │ debg Waiting on the login form to appear
[00:02:45]               │ debg Waiting for Login Page to appear.
[00:02:45]               │ debg Waiting up to 100000ms for login page...
[00:02:45]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594143296183 341 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:45]               │
[00:02:45]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:45]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:48]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:34:58Z
[00:02:48]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:48]               │
[00:02:48]               │      "
[00:02:48]               │ debg browser[INFO] http://localhost:6151/login?_t=1594143296183 341 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:48]               │
[00:02:48]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:48]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:48]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:34:59Z
[00:02:48]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:48]               │
[00:02:48]               │      "
[00:02:49]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:49]               │ debg navigating to login url: http://localhost:6151/login
[00:02:49]               │ debg navigate to: http://localhost:6151/login
[00:02:49]               │ debg browser[INFO] http://localhost:6151/login?_t=1594143300776 341 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:49]               │
[00:02:49]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:49]               │ debg ... sleep(700) start
[00:02:50]               │ debg ... sleep(700) end
[00:02:50]               │ debg returned from get, calling refresh
[00:02:51]               │ debg browser[INFO] http://localhost:6151/login?_t=1594143300776 341 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:51]               │
[00:02:51]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:51]               │ debg currentUrl = http://localhost:6151/login
[00:02:51]               │          appUrl = http://localhost:6151/login
[00:02:51]               │ debg TestSubjects.find(kibanaChrome)
[00:02:51]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:52]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:35:03Z
[00:02:52]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:52]               │
[00:02:52]               │      "
[00:02:52]               │ debg ... sleep(501) start
[00:02:53]               │ debg ... sleep(501) end
[00:02:53]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:53]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:55]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:56]               │ debg Waiting for Login Form to appear.
[00:02:56]               │ debg Waiting up to 100000ms for login form...
[00:02:56]               │ debg TestSubjects.exists(loginForm)
[00:02:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:56]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:56]               │ debg TestSubjects.click(loginUsername)
[00:02:56]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:56]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:56]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:56]               │ debg TestSubjects.click(loginPassword)
[00:02:56]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:56]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:56]               │ debg TestSubjects.click(loginSubmit)
[00:02:56]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:56]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:56]               │ debg Waiting for login result, expected: undefined.
[00:02:56]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:56]               │ debg TestSubjects.exists(userMenuButton)
[00:02:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:59]               │ debg browser[INFO] http://localhost:6151/app/home 341 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:59]               │
[00:02:59]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:59]               │ debg --- retry.tryForTime error: [data-test-subj="userMenuButton"] is not displayed
[00:02:59]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:35:10Z
[00:02:59]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:59]               │
[00:02:59]               │      "
[00:03:00]               │ debg TestSubjects.exists(userMenuButton)
[00:03:00]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:03:00]               │ debg TestSubjects.exists(userMenu)
[00:03:00]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:03:02]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:03:03]               │ debg TestSubjects.click(userMenuButton)
[00:03:03]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:03:03]               │ debg Waiting up to 20000ms for user menu opened...
[00:03:03]               │ debg TestSubjects.exists(userMenu)
[00:03:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:03:03]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:03:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:03:03]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:03:03]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:03:03]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594143314635#/ 341 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:03:03]               │
[00:03:03]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:03]               │ debg ... sleep(700) start
[00:03:04]               │ debg ... sleep(700) end
[00:03:04]               │ debg returned from get, calling refresh
[00:03:05]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594143314635#/ 341 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:03:05]               │
[00:03:05]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 11:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:03:05]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:03:05]               │          appUrl = http://localhost:6151/app/discover#/
[00:03:05]               │ debg TestSubjects.find(kibanaChrome)
[00:03:05]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:03:07]               │ debg browser[INFO] http://localhost:6151/33721/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 380:106115 "INFO: 2020-07-07T17:35:17Z
[00:03:07]               │        Adding connection to http://localhost:6151/elasticsearch
[00:03:07]               │
[00:03:07]               │      "
[00:03:07]               │ debg ... sleep(501) start
[00:03:07]               │ debg ... sleep(501) end
[00:03:08]               │ debg in navigateTo url = http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:%27103e0550-c078-11ea-89b5-87440bcfd3ef%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:03:08]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:03:08]               │ debg ... sleep(501) start
[00:03:09]               │ debg ... sleep(501) end
[00:03:09]               │ debg in navigateTo url = http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:%27103e0550-c078-11ea-89b5-87440bcfd3ef%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:03:09]               │ debg TestSubjects.exists(statusPageContainer)
[00:03:09]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:03:11]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:03:12]               │ debg isGlobalLoadingIndicatorVisible
[00:03:12]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:12]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:13]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:14]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:14]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:14]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:14]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:14]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:14]               │ debg --- retry.try error: expected '2' to equal '1'
[00:03:14]               │ debg isGlobalLoadingIndicatorVisible
[00:03:14]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:16]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:16]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:16]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:16]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:16]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:16]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:16]               │ debg --- retry.try failed again with the same message...
[00:03:17]               │ debg isGlobalLoadingIndicatorVisible
[00:03:17]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:18]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:19]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:19]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:19]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:19]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:19]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:19]               │ debg --- retry.try failed again with the same message...
[00:03:20]               │ debg isGlobalLoadingIndicatorVisible
[00:03:20]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:21]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:22]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:22]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:22]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:22]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:22]               │ debg --- retry.try failed again with the same message...
[00:03:22]               │ debg isGlobalLoadingIndicatorVisible
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:24]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:24]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:24]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:24]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:24]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:24]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:24]               │ debg --- retry.try failed again with the same message...
[00:03:25]               │ debg isGlobalLoadingIndicatorVisible
[00:03:25]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:26]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:27]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:27]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:27]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:27]               │ debg --- retry.try failed again with the same message...
[00:03:27]               │ debg isGlobalLoadingIndicatorVisible
[00:03:27]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:29]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:29]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:29]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:29]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:29]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:29]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:29]               │ debg --- retry.try failed again with the same message...
[00:03:30]               │ debg isGlobalLoadingIndicatorVisible
[00:03:30]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:31]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:32]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:32]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:32]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:32]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:32]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:32]               │ debg --- retry.try failed again with the same message...
[00:03:32]               │ debg isGlobalLoadingIndicatorVisible
[00:03:32]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:34]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:34]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:34]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:34]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:34]               │ debg --- retry.try failed again with the same message...
[00:03:35]               │ debg isGlobalLoadingIndicatorVisible
[00:03:35]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:36]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:37]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:37]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:37]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:37]               │ debg --- retry.try failed again with the same message...
[00:03:37]               │ debg isGlobalLoadingIndicatorVisible
[00:03:37]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:39]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:40]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:40]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:40]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:40]               │ debg --- retry.try failed again with the same message...
[00:03:40]               │ debg isGlobalLoadingIndicatorVisible
[00:03:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:42]               │ debg --- retry.try failed again with the same message...
[00:03:43]               │ debg isGlobalLoadingIndicatorVisible
[00:03:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:45]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:45]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:45]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:45]               │ debg --- retry.try failed again with the same message...
[00:03:45]               │ debg isGlobalLoadingIndicatorVisible
[00:03:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:47]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:47]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:47]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:47]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:47]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:47]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:47]               │ debg --- retry.try failed again with the same message...
[00:03:48]               │ debg isGlobalLoadingIndicatorVisible
[00:03:48]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:48]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:49]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:50]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:50]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:50]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:50]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:50]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:50]               │ debg --- retry.try failed again with the same message...
[00:03:50]               │ debg isGlobalLoadingIndicatorVisible
[00:03:50]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:52]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:52]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:52]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:52]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:52]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:52]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:52]               │ debg --- retry.try failed again with the same message...
[00:03:53]               │ debg isGlobalLoadingIndicatorVisible
[00:03:53]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:55]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:55]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:55]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:55]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:55]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:55]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:55]               │ debg --- retry.try failed again with the same message...
[00:03:56]               │ debg isGlobalLoadingIndicatorVisible
[00:03:56]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:57]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:58]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:58]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:58]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:58]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:58]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:58]               │ debg --- retry.try failed again with the same message...
[00:03:58]               │ debg isGlobalLoadingIndicatorVisible
[00:03:58]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:58]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:00]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:00]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:00]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:00]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:00]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:00]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:00]               │ debg --- retry.try failed again with the same message...
[00:04:01]               │ debg isGlobalLoadingIndicatorVisible
[00:04:01]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:01]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:02]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:03]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:03]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:03]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:03]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:03]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:03]               │ debg --- retry.try failed again with the same message...
[00:04:03]               │ debg isGlobalLoadingIndicatorVisible
[00:04:03]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:05]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:05]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:05]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:05]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:05]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:05]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:05]               │ debg --- retry.try failed again with the same message...
[00:04:06]               │ debg isGlobalLoadingIndicatorVisible
[00:04:06]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:06]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:08]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:08]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:08]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:08]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:08]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:08]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:08]               │ debg --- retry.try failed again with the same message...
[00:04:09]               │ debg isGlobalLoadingIndicatorVisible
[00:04:09]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:09]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:10]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:11]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:11]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:11]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:11]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:11]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:11]               │ debg --- retry.try failed again with the same message...
[00:04:11]               │ debg isGlobalLoadingIndicatorVisible
[00:04:11]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:11]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:13]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:13]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:13]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:13]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:13]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:13]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:13]               │ debg --- retry.try failed again with the same message...
[00:04:14]               │ debg isGlobalLoadingIndicatorVisible
[00:04:14]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:15]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:16]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:16]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:16]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:16]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:16]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:16]               │ debg --- retry.try failed again with the same message...
[00:04:16]               │ debg isGlobalLoadingIndicatorVisible
[00:04:16]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:16]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:18]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:18]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:18]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:18]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:18]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:18]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:18]               │ debg --- retry.try failed again with the same message...
[00:04:19]               │ debg isGlobalLoadingIndicatorVisible
[00:04:19]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:20]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:21]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:21]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:21]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:21]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:21]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:21]               │ debg --- retry.try failed again with the same message...
[00:04:21]               │ debg isGlobalLoadingIndicatorVisible
[00:04:21]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:23]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:23]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:23]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:23]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:23]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:23]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:23]               │ debg --- retry.try failed again with the same message...
[00:04:24]               │ debg isGlobalLoadingIndicatorVisible
[00:04:24]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:24]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:26]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:26]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:26]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:26]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:26]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:26]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:26]               │ debg --- retry.try failed again with the same message...
[00:04:27]               │ debg isGlobalLoadingIndicatorVisible
[00:04:27]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:28]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:29]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:29]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:29]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:29]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:29]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:29]               │ debg --- retry.try failed again with the same message...
[00:04:29]               │ debg isGlobalLoadingIndicatorVisible
[00:04:29]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:29]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:31]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:31]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:31]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:31]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:31]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:31]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:31]               │ debg --- retry.try failed again with the same message...
[00:04:32]               │ debg isGlobalLoadingIndicatorVisible
[00:04:32]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:33]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:34]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:34]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:34]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:34]               │ debg --- retry.try failed again with the same message...
[00:04:34]               │ debg isGlobalLoadingIndicatorVisible
[00:04:34]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:34]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:36]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:36]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:36]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:36]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:36]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:36]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:36]               │ debg --- retry.try failed again with the same message...
[00:04:37]               │ debg isGlobalLoadingIndicatorVisible
[00:04:37]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:37]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:37]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:37]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:37]               │ debg --- retry.try failed again with the same message...
[00:04:38]               │ debg isGlobalLoadingIndicatorVisible
[00:04:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:39]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:40]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:40]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:40]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:40]               │ debg --- retry.try failed again with the same message...
[00:04:40]               │ debg isGlobalLoadingIndicatorVisible
[00:04:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:42]               │ debg --- retry.try failed again with the same message...
[00:04:43]               │ debg isGlobalLoadingIndicatorVisible
[00:04:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:45]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:45]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:45]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:45]               │ debg --- retry.try failed again with the same message...
[00:04:45]               │ debg isGlobalLoadingIndicatorVisible
[00:04:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:47]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:47]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:47]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:47]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:47]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:47]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:47]               │ debg --- retry.try failed again with the same message...
[00:04:48]               │ debg isGlobalLoadingIndicatorVisible
[00:04:48]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:48]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:49]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:50]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:50]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:50]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:50]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:50]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:50]               │ debg --- retry.try failed again with the same message...
[00:04:50]               │ debg isGlobalLoadingIndicatorVisible
[00:04:50]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:52]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:52]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:52]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:52]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:52]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:52]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:52]               │ debg --- retry.try failed again with the same message...
[00:04:53]               │ debg isGlobalLoadingIndicatorVisible
[00:04:53]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:55]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:55]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:55]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:55]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:55]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:55]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:55]               │ debg --- retry.try failed again with the same message...
[00:04:56]               │ debg isGlobalLoadingIndicatorVisible
[00:04:56]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:57]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:58]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:58]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:58]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:58]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:58]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:58]               │ debg --- retry.try failed again with the same message...
[00:04:58]               │ debg isGlobalLoadingIndicatorVisible
[00:04:58]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:58]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:05:00]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:05:00]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:05:00]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:05:00]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:05:00]               │ debg TestSubjects.find(discoverQueryHits)
[00:05:00]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:05:00]               │ debg --- retry.try failed again with the same message...
[00:05:01]               │ debg isGlobalLoadingIndicatorVisible
[00:05:01]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:05:01]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:05:02]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:05:03]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:05:03]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:05:03]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:05:03]               │ debg TestSubjects.find(discoverQueryHits)
[00:05:03]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:05:03]               │ debg --- retry.try failed again with the same message...
[00:05:03]               │ debg isGlobalLoadingIndicatorVisible
[00:05:03]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:05:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:05:05]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:05:05]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:05:05]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:05:05]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:05:05]               │ debg TestSubjects.find(discoverQueryHits)
[00:05:05]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:05:05]               │ debg --- retry.try failed again with the same message...
[00:05:06]               │ debg isGlobalLoadingIndicatorVisible
[00:05:06]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:05:06]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:05:07]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:05:08]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:05:08]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:05:08]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:05:08]               │ debg TestSubjects.find(discoverQueryHits)
[00:05:08]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:05:08]               │ debg --- retry.try failed again with the same message...
[00:05:08]               │ debg isGlobalLoadingIndicatorVisible
[00:05:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:05:08]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:05:10]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:05:11]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:05:11]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:05:11]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:05:11]               │ debg TestSubjects.find(discoverQueryHits)
[00:05:11]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:05:11]               │ debg --- retry.try failed again with the same message...
[00:05:11]               │ debg isGlobalLoadingIndicatorVisible
[00:05:11]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:05:11]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:05:13]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:05:13]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:05:13]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:05:13]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:05:13]               │ debg TestSubjects.find(discoverQueryHits)
[00:05:13]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:05:13]               │ debg --- retry.try failed again with the same message...
[00:05:14]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/security app dls user East should only see EAST doc.png"
[00:05:14]               │ info Current URL is: http://localhost:6151/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(_source),filters:!(),index:%27103e0550-c078-11ea-89b5-87440bcfd3ef%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:05:14]               │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/security app dls user East should only see EAST doc.html
[00:05:14]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:05:14]               │

Stack Trace

Error: retry.try timeout: Error: expected '2' to equal '1'
    at Assertion.assert (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/kibana/packages/kbn-expect/expect.js:69:22)
    at retry.try (test/functional/apps/security/doc_level_security_roles.js:76:29)
    at process._tickCallback (internal/process/next_tick.js:68:7)
    at onFailure (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:28:9)
    at retryForSuccess (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:68:13)

and 4 more failures, only showing the first 3.

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
Feature:Index Management Index and index templates UI release_note:enhancement Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.9.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants