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

[Security] Adds field mapping support to rule creation Part I #70288

Merged
merged 8 commits into from
Jul 2, 2020

Conversation

spong
Copy link
Member

@spong spong commented Jun 30, 2020

Summary

Resolves: #65941, #66317, and Add support for "building block" alerts

This PR is Part I and adds additional fields to the rules schema in supporting the ability to map and override fields when generating alerts. A few bookkeeping fields like license and author have been added as well. The new fields are as follows:

export interface TheseAreTheNewFields {
  author: string[];
  building_block_type: string; // 'default'
  license: string;
  risk_score_mapping: Array<
    {
      field: string;
      operator: string; // 'equals'
      value: string;
    }
  >;
  rule_name_override: string;
  severity_mapping: Array<
    {
      field: string;
      operator: string; // 'equals'
      value: string;
      severity: string; // 'low' | 'medium' | 'high' | 'critical'
    }
  >;
  timestamp_override: string;
}

These new fields are exposed as additional settings on the About rule section of the Rule Creation UI.

Default collapsed view, no severity or risk score override specified:

Severity & risk score override specified:

Additional fields in Advanced settings:

Note: This PR adds the fields to the Rules Schema, the signals index mapping, and creates the UI for adding these fields during Rule Creation/Editing. The follow-up Part II will add the business logic for mapping fields during rule execution, and also add UI validation/additional tests.

Checklist

Delete any items that are not applicable to this PR.

For maintainers

@spong spong added release_note:enhancement Team:SIEM v8.0.0 v7.9.0 Feature:Detection Rules Anything related to Security Solution's Detection Rules labels Jun 30, 2020
@spong spong self-assigned this Jun 30, 2020
@spong spong marked this pull request as ready for review July 1, 2020 23:14
@spong spong requested review from a team as code owners July 1, 2020 23:14
@elasticmachine
Copy link
Contributor

Pinging @elastic/siem (Team:SIEM)

Copy link
Contributor

@FrankHassanabad FrankHassanabad left a comment

Choose a reason for hiding this comment

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

LGTM

@@ -179,18 +203,65 @@ export type Name = t.TypeOf<typeof name>;
export const nameOrUndefined = t.union([name, t.undefined]);
export type NameOrUndefined = t.TypeOf<typeof nameOrUndefined>;

export const operator = t.keyof({
equals: null,
Copy link
Contributor

@FrankHassanabad FrankHassanabad Jul 1, 2020

Choose a reason for hiding this comment

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

Nit: You can use maybe: OperatorEnum['EQUALS']: null here. That would reduce one area of manual typing.

@@ -1539,6 +1560,9 @@ describe('add prepackaged rules schema', () => {
const message = pipe(checked, foldLeftRight);
expect(getPaths(left(message.errors))).toEqual([]);
const expected: AddPrepackagedRulesSchemaDecoded = {
author: [],
severity_mapping: [],
risk_score_mapping: [],
rule_id: 'rule-1',
description: 'some description',
from: 'now-5m',
Copy link
Contributor

Choose a reason for hiding this comment

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

You should add a test where you exercise each of these array values to convince yourself they will work as well as one where you have an invalid data type such as a string instead of an array or a number instead of a string.

Then basically cut across the other schemas and add the "proof" that it validates to each of those.

Copy link
Member Author

Choose a reason for hiding this comment

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

Thanks! I've noted and will include those in Part II!

@@ -1591,6 +1624,9 @@ describe('create rules schema', () => {
const message = pipe(checked, foldLeftRight);
expect(getPaths(left(message.errors))).toEqual([]);
const expected: CreateRulesSchemaDecoded = {
author: [],
severity_mapping: [],
risk_score_mapping: [],
rule_id: 'rule-1',
description: 'some description',
from: 'now-5m',
Copy link
Contributor

Choose a reason for hiding this comment

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

You should add a test where you exercise each of these array values to convince yourself they will work as well as one where you have an invalid data type such as a string instead of an array or a number instead of a string.

Then basically cut across the other schemas and add the "proof" that it validates to each of those.

@@ -1727,6 +1754,9 @@ describe('import rules schema', () => {
const message = pipe(checked, foldLeftRight);
expect(getPaths(left(message.errors))).toEqual([]);
const expected: ImportRulesSchemaDecoded = {
author: [],
severity_mapping: [],
risk_score_mapping: [],
rule_id: 'rule-1',
description: 'some description',
from: 'now-5m',
Copy link
Contributor

Choose a reason for hiding this comment

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

You should add a test where you exercise each of these array values to convince yourself they will work as well as one where you have an invalid data type such as a string instead of an array or a number instead of a string.

Then basically cut across the other schemas and add the "proof" that it validates to each of those.

@@ -1531,6 +1558,9 @@ describe('update rules schema', () => {
const message = pipe(checked, foldLeftRight);
expect(getPaths(left(message.errors))).toEqual([]);
const expected: UpdateRulesSchemaDecoded = {
author: [],
severity_mapping: [],
risk_score_mapping: [],
rule_id: 'rule-1',
description: 'some description',
from: 'now-5m',
Copy link
Contributor

Choose a reason for hiding this comment

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

You should add a test where you exercise each of these array values to convince yourself they will work as well as one where you have an invalid data type such as a string instead of an array or a number instead of a string.

Then basically cut across the other schemas and add the "proof" that it validates to each of those.

t.identity
);

export type DefaultRiskScoreMappingArrayC = typeof DefaultRiskScoreMappingArray;
Copy link
Contributor

Choose a reason for hiding this comment

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

You should copy the boiler plate code from one of the others and add it here. Shouldn't take you long.

t.identity
);

export type DefaultSeverityMappingArrayC = typeof DefaultSeverityMappingArray;
Copy link
Contributor

Choose a reason for hiding this comment

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

You should copy the boiler plate code from one of the others and add it here. Shouldn't take you long.

'xpack.securitySolution.detectionEngine.createRule.stepAboutRule.fieldAuthorHelpText',
{
defaultMessage:
'Type one or more author for this rule. Press enter after each author to add a new one.',
Copy link
Contributor

Choose a reason for hiding this comment

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

Did you want author with an s like:

Type one or more authors for this rule.

@@ -377,13 +383,18 @@ describe('helpers', () => {
};
const result: AboutStepRuleJson = formatAboutStepData(mockStepData);
const expected = {
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we type this with the Schema at this point?

const expected: RuleSchema

Not a biggie but would a nice win to know that we have more compile time checks when we change things.

@@ -414,12 +426,17 @@ describe('helpers', () => {
};
const result: AboutStepRuleJson = formatAboutStepData(mockStepData);
const expected = {
author: ['Elastic'],
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we type this with the Schema at this point?

const expected: RuleSchema

Not a biggie but would a nice win to know that we have more compile time checks when we change things.

@@ -481,13 +499,18 @@ describe('helpers', () => {
};
const result: AboutStepRuleJson = formatAboutStepData(mockStepData);
const expected = {
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we type this with the Schema at this point?

const expected: RuleSchema

Not a biggie but would a nice win to know that we have more compile time checks when we change things.

RuleNameOverride,
SeverityMapping,
TimestampOverride,
} from '../../../../../common/detection_engine/schemas/common/schemas';
Copy link
Contributor

Choose a reason for hiding this comment

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

NICE! The common schemas are beginning to make their appearance on the front end.

Copy link
Member Author

Choose a reason for hiding this comment

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

Slowly but surely! I didn't want to make the full-swap as part of this PR in case there was any collateral damage, but may inch a bit closer in Part II now that I understand how all our types/schemas are working a bit better 🙂

@@ -388,6 +394,7 @@ export const getResult = (): RuleAlertType => ({
],
},
],
timestampOverride: undefined,
references: ['http://www.example.com', 'https://ww.example.com'],
note: '# Investigative notes',
version: 1,
Copy link
Contributor

Choose a reason for hiding this comment

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

Doesn't have to be this PR, but we should move towards getting more code out of mocks and as close to their respective schema files where possible or just move them into a closely named file_name.mock.ts somewhere.

Just keep it in mind as you're going through here that I think it's more Kibana core like to move things out of the mocks folders and it has just been easier to maintain and find mocks that way IMHO.

@@ -24,7 +24,7 @@ do {
-u ${ELASTICSEARCH_USERNAME}:${ELASTICSEARCH_PASSWORD} \
-X POST ${KIBANA_URL}${SPACE_URL}/api/detection_engine/rules \
-d @${RULE} \
| jq .;
| jq -S .;
Copy link
Contributor

Choose a reason for hiding this comment

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

I am fine with this. I think for consistency we should update everywhere but I won't inflict that on this PR. You can leave it here and we will do a sweep through to do a sort on all the fields when doing POST, GET, DELETE, later...

Copy link
Member Author

Choose a reason for hiding this comment

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

Whoops -- left that accidentally... 😬 I've made a note to update the rest to use it as well in Part II. Was really helpful in testing/debugging via the CLI scripts -- would like to turn on the linter rule for alphabetizing params too as that caused a bit of fatigue through all of this as well!

}
],
"timestamp_override": "event.ingested"
}
Copy link
Contributor

Choose a reason for hiding this comment

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

There's a query called query_with_everything.json that is supposed to be the kitchen sink example FWIW. It's best to update that one with any missing fields and we typically use it to put everything under the sun into it.

@spong spong merged commit 591e103 into elastic:master Jul 2, 2020
@spong spong deleted the rule-schema-updates branch July 2, 2020 04:49
gmmorris added a commit to gmmorris/kibana that referenced this pull request Jul 2, 2020
* master: (46 commits)
  [Visualize] Add missing advanced settings and custom label for pipeline aggs (elastic#69688)
  Use dynamic: false for config saved object mappings (elastic#70436)
  [Ingest Pipelines] Error messages (elastic#70167)
  [APM] Show transaction rate per minute on Observability Overview page (elastic#70336)
  Filter out error when calculating a label (elastic#69934)
  [Visualizations] Each visType returns its supported triggers (elastic#70177)
  [Telemetry] Report data shippers (elastic#64935)
  Reduce SavedObjects mappings for Application Usage (elastic#70475)
  [Lens] fix dimension label performance issues (elastic#69978)
  Skip failing endgame tests (elastic#70548)
  [SIEM] Reenabling Cypress tests (elastic#70397)
  [SIEM][Security Solution][Endpoint] Endpoint Artifact Manifest Management + Artifact Download and Distribution (elastic#67707)
  [Security] Adds field mapping support to rule creation (elastic#70288)
  SECURITY-ENDPOINT: add fields for events to metadata document (elastic#70491)
  Fixed assertion in hybrid index pattern test to iterate through indices (elastic#70130)
  [SIEM][Exceptions] - Exception builder component (elastic#67013)
  [Ingest Manager] Rename data sources to package configs (elastic#70259)
  skip suites blocking es snapshot promomotion (elastic#70532)
  [Metrics UI] Fix asynchronicity and error handling in Snapshot API (elastic#70503)
  fix export response (elastic#70473)
  ...
FrankHassanabad pushed a commit to FrankHassanabad/kibana that referenced this pull request Jul 2, 2020
## Summary

Resolves: elastic#65941, elastic#66317, and `Add support for "building block" alerts`

This PR is `Part I` and adds additional fields to the `rules schema` in supporting the ability to map and override fields when generating alerts. A few bookkeeping fields like `license` and `author` have been added as well. The new fields are as follows:

``` ts
export interface TheseAreTheNewFields {
  author: string[];
  building_block_type: string; // 'default'
  license: string;
  risk_score_mapping: Array<
    {
      field: string;
      operator: string; // 'equals'
      value: string;
    }
  >;
  rule_name_override: string;
  severity_mapping: Array<
    {
      field: string;
      operator: string; // 'equals'
      value: string;
      severity: string; // 'low' | 'medium' | 'high' | 'critical'
    }
  >;
  timestamp_override: string;
}
```

These new fields are exposed as additional settings on the `About rule` section of the Rule Creation UI.

##### Default collapsed view, no severity or risk score override specified:
<p align="center">
  <img width="500" src="https://user-images.githubusercontent.com/2946766/86090417-49c0ee80-ba67-11ea-898f-a43af6d9383f.png" />
</p>

##### Severity & risk score override specified:
<p align="center">
  <img width="500" src="https://user-images.githubusercontent.com/2946766/86091165-a8d33300-ba68-11ea-86ac-89393a7ca3f5.png" />
</p>

##### Additional fields in Advanced settings:
<p align="center">
  <img width="500" src="https://user-images.githubusercontent.com/2946766/86091256-cbfde280-ba68-11ea-9b63-acf2524039bd.png" />
</p>


Note: This PR adds the fields to the `Rules Schema`, the `signals index mapping`,  and creates the UI for adding these fields during Rule Creation/Editing. The follow-up `Part II` will add the business logic for mapping fields during `rule execution`, and also add UI validation/additional tests.

### Checklist

Delete any items that are not applicable to this PR.

- [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)
- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials
  - Syncing w/ @benskelker 
- [x] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios
- [x] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist)

### For maintainers

- [x] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)
FrankHassanabad added a commit that referenced this pull request Jul 2, 2020
…#70603)

* [Security] Adds field mapping support to rule creation (#70288)

## Summary

Resolves: #65941, #66317, and `Add support for "building block" alerts`

This PR is `Part I` and adds additional fields to the `rules schema` in supporting the ability to map and override fields when generating alerts. A few bookkeeping fields like `license` and `author` have been added as well. The new fields are as follows:

``` ts
export interface TheseAreTheNewFields {
  author: string[];
  building_block_type: string; // 'default'
  license: string;
  risk_score_mapping: Array<
    {
      field: string;
      operator: string; // 'equals'
      value: string;
    }
  >;
  rule_name_override: string;
  severity_mapping: Array<
    {
      field: string;
      operator: string; // 'equals'
      value: string;
      severity: string; // 'low' | 'medium' | 'high' | 'critical'
    }
  >;
  timestamp_override: string;
}
```

These new fields are exposed as additional settings on the `About rule` section of the Rule Creation UI.

##### Default collapsed view, no severity or risk score override specified:
<p align="center">
  <img width="500" src="https://user-images.githubusercontent.com/2946766/86090417-49c0ee80-ba67-11ea-898f-a43af6d9383f.png" />
</p>

##### Severity & risk score override specified:
<p align="center">
  <img width="500" src="https://user-images.githubusercontent.com/2946766/86091165-a8d33300-ba68-11ea-86ac-89393a7ca3f5.png" />
</p>

##### Additional fields in Advanced settings:
<p align="center">
  <img width="500" src="https://user-images.githubusercontent.com/2946766/86091256-cbfde280-ba68-11ea-9b63-acf2524039bd.png" />
</p>


Note: This PR adds the fields to the `Rules Schema`, the `signals index mapping`,  and creates the UI for adding these fields during Rule Creation/Editing. The follow-up `Part II` will add the business logic for mapping fields during `rule execution`, and also add UI validation/additional tests.

### Checklist

Delete any items that are not applicable to this PR.

- [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)
- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials
  - Syncing w/ @benskelker 
- [x] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios
- [x] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist)

### For maintainers

- [x] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)

* Fixed i18n keys

Co-authored-by: Garrett Spong <spong@users.noreply.github.com>
@spong spong changed the title [Security] Adds field mapping support to rule creation [Security] Adds field mapping support to rule creation Part I Jul 8, 2020
@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:32:50]         └-: Index Management app
[00:32:50]           └-> "before all" hook
[00:32:50]           └-: Home page
[00:32:50]             └-> "before all" hook
[00:32:50]             └-> "before all" hook
[00:32:50]               │ debg navigating to indexManagement url: http://localhost:6141/app/management/data/index_management
[00:32:50]               │ debg navigate to: http://localhost:6141/app/management/data/index_management
[00:32:50]               │ proc [kibana]   log   [17:49:23.306] [info][authentication][plugins][security] Authentication attempt failed: [security_exception] unable to authenticate user [ml_poweruser] for REST request [/_security/_authenticate], with { header={ WWW-Authenticate={ 0="ApiKey" & 1="Basic realm=\"security\" charset=\"UTF-8\"" } } }
[00:32:50]               │ERROR browser[SEVERE] http://localhost:6141/app/management/data/index_management?_t=1594230563260 - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:32:50]               │ debg ... sleep(700) start
[00:32:51]               │ debg ... sleep(700) end
[00:32:51]               │ debg returned from get, calling refresh
[00:32:51]               │ debg browser[INFO] http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594230563260 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:32:51]               │
[00:32:51]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:32:51]               │ debg currentUrl = http://localhost:6141/login?next=%2Fapp%2Fmanagement%2Fdata%2Findex_management%3F_t%3D1594230563260
[00:32:51]               │          appUrl = http://localhost:6141/app/management/data/index_management
[00:32:51]               │ debg TestSubjects.find(kibanaChrome)
[00:32:51]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:32:53]               │ debg Found login page
[00:32:53]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:32:53]               │ debg TestSubjects.click(loginUsername)
[00:32:53]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:32:53]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:32:53]               │ debg browser[INFO] http://localhost:6141/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:49:25Z
[00:32:53]               │        Adding connection to http://localhost:6141/elasticsearch
[00:32:53]               │
[00:32:53]               │      "
[00:32:53]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:32:53]               │ debg TestSubjects.click(loginPassword)
[00:32:53]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:32:53]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:32:53]               │ debg TestSubjects.click(loginSubmit)
[00:32:53]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:32:53]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:32:53]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:32:55]               │ debg browser[INFO] http://localhost:6141/app/management/data/index_management?_t=1594230563260 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:32:55]               │
[00:32:55]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:32:55]               │ debg browser[INFO] http://localhost:6141/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:49:27Z
[00:32:55]               │        Adding connection to http://localhost:6141/elasticsearch
[00:32:55]               │
[00:32:55]               │      "
[00:32:55]               │ debg browser[INFO] http://localhost:6141/app/management/data/index_management?_t=1594230568172 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:32:55]               │
[00:32:55]               │ debg browser[INFO] http://localhost:6141/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:32:55]               │ debg Finished login process currentUrl = http://localhost:6141/app/management/data/index_management
[00:32:55]               │ debg ... sleep(501) start
[00:32:56]               │ debg ... sleep(501) end
[00:32:56]               │ debg in navigateTo url = http://localhost:6141/app/management/data/index_management
[00:32:56]               │ debg TestSubjects.exists(statusPageContainer)
[00:32:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:32:59]               │ debg browser[INFO] http://localhost:6141/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:49:29Z
[00:32:59]               │        Adding connection to http://localhost:6141/elasticsearch
[00:32:59]               │
[00:32:59]               │      "
[00:32:59]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:32:59]             └-> Loads the app and renders the indices tab by default
[00:32:59]               └-> "before each" hook: global before each
[00:32:59]               │ debg Checking for section heading to say Index Management.
[00:32:59]               │ debg TestSubjects.getVisibleText(appTitle)
[00:32:59]               │ debg TestSubjects.find(appTitle)
[00:32:59]               │ debg Find.findByCssSelector('[data-test-subj="appTitle"]') with timeout=10000
[00:32:59]               │ debg TestSubjects.exists(indicesList)
[00:32:59]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="indicesList"]') with timeout=2500
[00:32:59]               │ debg TestSubjects.find(reloadIndicesButton)
[00:32:59]               │ debg Find.findByCssSelector('[data-test-subj="reloadIndicesButton"]') with timeout=10000
[00:32:59]               └- ✓ pass  (100ms) "Index Management app Home page Loads the app and renders the indices tab by default"
[00:32:59]             └-: Data streams
[00:32:59]               └-> "before all" hook
[00:33:02]             └-: Component templates
[00:33:02]               └-> "before all" hook
[00:33:02]               └-> renders the component templates tab
[00:33:02]                 └-> "before each" hook: global before each
[00:33:02]                 │ debg TestSubjects.click(component_templatesTab)
[00:33:02]                 │ debg Find.clickByCssSelector('[data-test-subj="component_templatesTab"]') with timeout=10000
[00:33:02]                 │ debg Find.findByCssSelector('[data-test-subj="component_templatesTab"]') with timeout=10000
[00:33:02]                 │ debg isGlobalLoadingIndicatorVisible
[00:33:02]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:33:02]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:33:02]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:33:02]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:33:02]                 │ debg TestSubjects.exists(emptyList)
[00:33:02]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="emptyList"]') with timeout=2500
[00:33:05]                 │ debg --- retry.tryForTime error: [data-test-subj="emptyList"] is not displayed
[00:33:05]                 │ 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:33:05]                 │ info Current URL is: http://localhost:6141/app/management/data/index_management/component_templates
[00:33:05]                 │ 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:33:05]                 └- ✖ fail: "Index Management app Home page Component templates renders the component templates tab"
[00:33:05]                 │

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:06]           └-: dls
[00:01:06]             └-> "before all" hook
[00:01:06]             └-> "before all" hook: initialize tests
[00:01:06]               │ info [empty_kibana] Loading "mappings.json"
[00:01:06]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_1/PMkfxJzlQEWUT8fXPZSbzQ] deleting index
[00:01:06]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/hazwyq_FTJabLVuaFEjP0Q] deleting index
[00:01:06]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:01:06]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:06]               │ info [empty_kibana] Created index ".kibana"
[00:01:06]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:06]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana/lxExfDWRQoCZ9Vobq51Wtw] update_mapping [_doc]
[00:01:06]               │ debg Migrating saved objects
[00:01:06]               │ proc [kibana]   log   [17:25:20.521] [info][savedobjects-service] Creating index .kibana_2.
[00:01:06]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:06]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:06]               │ proc [kibana]   log   [17:25:20.642] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:06]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:06]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:06]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] 1832 finished with response BulkByScrollResponse[took=2.7ms,timed_out=false,sliceId=null,updated=0,created=0,deleted=0,batches=0,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:01:06]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana/lxExfDWRQoCZ9Vobq51Wtw] deleting index
[00:01:06]               │ proc [kibana]   log   [17:25:21.060] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:06]               │ proc [kibana]   log   [17:25:21.068] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:06]               │ proc [kibana]   log   [17:25:21.112] [info][savedobjects-service] Finished in 593ms.
[00:01:06]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:01:06]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/ulp_5Rw_Suiz-F8Bca0_jA] update_mapping [_doc]
[00:01:07]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/ulp_5Rw_Suiz-F8Bca0_jA] update_mapping [_doc]
[00:01:07]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/ulp_5Rw_Suiz-F8Bca0_jA] update_mapping [_doc]
[00:01:08]               │ info [security/dlstest] Loading "mappings.json"
[00:01:08]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:08]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:08]               │ info [security/dlstest] Created index "dlstest"
[00:01:08]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:08]               │ info [security/dlstest] Indexed 2 docs into "dlstest"
[00:01:08]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:08]               │ debg navigate to: http://localhost:6151/app/management
[00:01:08]               │ debg ... sleep(700) start
[00:01:08]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594229123043 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:08]               │
[00:01:08]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:09]               │ debg ... sleep(700) end
[00:01:09]               │ debg returned from get, calling refresh
[00:01:10]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:24Z
[00:01:10]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:10]               │
[00:01:10]               │      "
[00:01:10]               │ERROR browser[SEVERE] http://localhost:6151/34233/bundles/core/core.entry.js 75:261772 TypeError: Failed to fetch
[00:01:10]               │          at Fetch._callee3$ (http://localhost:6151/34233/bundles/core/core.entry.js:26:104500)
[00:01:10]               │          at l (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005349)
[00:01:10]               │          at Generator._invoke (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005102)
[00:01:10]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005706)
[00:01:10]               │          at fetch_asyncGeneratorStep (http://localhost:6151/34233/bundles/core/core.entry.js:26:98881)
[00:01:10]               │          at _throw (http://localhost:6151/34233/bundles/core/core.entry.js:26:99289)
[00:01:10]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594229123043 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:10]               │
[00:01:10]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:11]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:24Z
[00:01:11]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:11]               │
[00:01:11]               │      "
[00:01:11]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594229123043
[00:01:11]               │          appUrl = http://localhost:6151/app/management
[00:01:11]               │ debg TestSubjects.find(kibanaChrome)
[00:01:11]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:11]               │ debg Found login page
[00:01:11]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:11]               │ debg TestSubjects.click(loginUsername)
[00:01:11]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:11]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:11]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:11]               │ debg TestSubjects.click(loginPassword)
[00:01:11]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:11]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:11]               │ debg TestSubjects.click(loginSubmit)
[00:01:11]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:11]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:11]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:13]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229123043 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:13]               │
[00:01:13]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:13]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:27Z
[00:01:13]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:13]               │
[00:01:13]               │      "
[00:01:13]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229127881 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:13]               │
[00:01:13]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:13]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:13]               │ debg ... sleep(501) start
[00:01:14]               │ debg ... sleep(501) end
[00:01:14]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:14]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:17]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:29Z
[00:01:17]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:17]               │
[00:01:17]               │      "
[00:01:17]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:17]               │ debg isGlobalLoadingIndicatorVisible
[00:01:17]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:19]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:19]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:19]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:19]               │ debg clickKibanaIndexPatterns link
[00:01:19]               │ debg TestSubjects.click(indexPatterns)
[00:01:19]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:19]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:19]               │ debg isGlobalLoadingIndicatorVisible
[00:01:19]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:20]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:20]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:20]               │ debg Waiting up to 20000ms for index pattern info flyout...
[00:01:20]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:20]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:20]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:20]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:20]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:23]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:23]               │ debg isGlobalLoadingIndicatorVisible
[00:01:23]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:25]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:25]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:25]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:25]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:26]               │ debg isGlobalLoadingIndicatorVisible
[00:01:26]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:26]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:26]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:26]               │ debg setIndexPatternField(dlstest)
[00:01:26]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:27]               │ debg setIndexPatternField set to dlstest
[00:01:27]               │ debg ... sleep(2000) start
[00:01:29]               │ debg ... sleep(2000) end
[00:01:29]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:29]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:29]               │ debg ... sleep(2000) start
[00:01:31]               │ debg ... sleep(2000) end
[00:01:31]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:31]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:31]               │ debg isGlobalLoadingIndicatorVisible
[00:01:31]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:31]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[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]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/ulp_5Rw_Suiz-F8Bca0_jA] update_mapping [_doc]
[00:01:32]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/ulp_5Rw_Suiz-F8Bca0_jA] update_mapping [_doc]
[00:01:33]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/0ed29190-c140-11ea-bb0c-4d3408ef0a18
[00:01:33]               │ debg --- retry.try error: Index pattern not created
[00:01:34]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/0ed29190-c140-11ea-bb0c-4d3408ef0a18
[00:01:34]               │ debg --- retry.try failed again with the same message...
[00:01:34]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/0ed29190-c140-11ea-bb0c-4d3408ef0a18#/?_a=(tab:indexedFields)
[00:01:34]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/0ed29190-c140-11ea-bb0c-4d3408ef0a18#/?_a=(tab:indexedFields)
[00:01:34]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[00:01:34]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:34]               │ debg navigate to: http://localhost:6151/app/management
[00:01:35]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229148921 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:35]               │ debg ... sleep(700) start
[00:01:35]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:49Z
[00:01:35]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:35]               │
[00:01:35]               │      "
[00:01:35]               │ debg ... sleep(700) end
[00:01:35]               │ debg returned from get, calling refresh
[00:01:35]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229148921 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:35]               │ debg currentUrl = http://localhost:6151/app/management
[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:37]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:51Z
[00:01:37]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:37]               │
[00:01:37]               │      "
[00:01:37]               │ debg ... sleep(501) start
[00:01:37]               │ debg ... sleep(501) end
[00:01:37]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:37]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:40]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:40]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:40]               │ debg navigate to: http://localhost:6151/app/management
[00:01:41]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229155164 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:41]               │
[00:01:41]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:41]               │ debg ... sleep(700) start
[00:01:41]               │ debg ... sleep(700) end
[00:01:41]               │ debg returned from get, calling refresh
[00:01:42]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:56Z
[00:01:42]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:42]               │
[00:01:42]               │      "
[00:01:42]               │ERROR browser[SEVERE] http://localhost:6151/34233/bundles/core/core.entry.js 75:261772 TypeError: Failed to fetch
[00:01:42]               │          at Fetch._callee3$ (http://localhost:6151/34233/bundles/core/core.entry.js:26:104500)
[00:01:42]               │          at l (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005349)
[00:01:42]               │          at Generator._invoke (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005102)
[00:01:42]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005706)
[00:01:42]               │          at fetch_asyncGeneratorStep (http://localhost:6151/34233/bundles/core/core.entry.js:26:98881)
[00:01:42]               │          at _throw (http://localhost:6151/34233/bundles/core/core.entry.js:26:99289)
[00:01:42]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229155164 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:42]               │
[00:01:42]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:43]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:25:57Z
[00:01:43]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:43]               │
[00:01:43]               │      "
[00:01:43]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:43]               │          appUrl = http://localhost:6151/app/management
[00:01:43]               │ debg TestSubjects.find(kibanaChrome)
[00:01:43]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:43]               │ debg ... sleep(501) start
[00:01:44]               │ debg ... sleep(501) end
[00:01:44]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:44]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:44]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:46]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:47]               │ debg TestSubjects.click(roles)
[00:01:47]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:47]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:47]             └-> should add new role myroleEast
[00:01:47]               └-> "before each" hook: global before each
[00:01:47]               │ debg TestSubjects.click(createRoleButton)
[00:01:47]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:47]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:47]               │ debg roleObj.indices[0].names = dlstest
[00:01:47]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:01:47]               │ debg TestSubjects.find(roleFormNameInput)
[00:01:47]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:01:48]               │ debg comboBox.setCustom, comboBoxSelector: indicesInput0, value: dlstest
[00:01:48]               │ debg TestSubjects.find(indicesInput0)
[00:01:48]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"]') with timeout=10000
[00:01:50]               │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:50]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:01:50]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:50]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:50]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:01:50]               │ debg TestSubjects.click(queryInput0)
[00:01:50]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:50]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:51]               │ debg TestSubjects.click(addSpacePrivilegeButton)
[00:01:51]               │ debg Find.clickByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:51]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:51]               │ debg TestSubjects.click(spaceSelectorComboBox)
[00:01:51]               │ debg Find.clickByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:51]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:51]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:01:51]               │ debg TestSubjects.click(basePrivilegeComboBox)
[00:01:51]               │ debg Find.clickByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:51]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:51]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:01:52]               │ debg TestSubjects.click(createSpacePrivilegeButton)
[00:01:52]               │ debg Find.clickByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:01:52]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:01:52]               │ debg Adding privilege read to role
[00:01:52]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:01:52]               │ debg Find.byButtonText('read') with timeout=10000
[00:01:53]               │ debg ... sleep(250) start
[00:01:53]               │ debg ... sleep(250) end
[00:01:53]               │ debg Adding privilege view_index_metadata to role
[00:01:53]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:01:53]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:01:54]               │ debg ... sleep(250) start
[00:01:54]               │ debg ... sleep(250) end
[00:01:54]               │ debg click save button
[00:01:54]               │ debg TestSubjects.click(roleFormSaveButton)
[00:01:54]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:01:54]               │ debg TestSubjects.exists(roleRow)
[00:01:54]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="roleRow"]') with timeout=120000
[00:01:54]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] added role [myroleEast]
[00:01:55]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:01:55]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:01:55]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:01:55]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:01:55]               │ debg TestSubjects.findAll(roleRow)
[00:01:55]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:01:58]               │ 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_ccr_role":{"rolename":"global_ccr_role","reserved":false,"deprecated":false},"global_devtools_read":{"rolename":"global_devtools_read","reserved":false,"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},"remote_monitoring_collector":{"rolename":"remote_monitoring_collector","reserved":true,"deprecated":false},"reporting_user":{"rolename":"reporting_user","reserved":true,"deprecated":false},"rollup_admin":{"rolename":"rollup_admin","reserved":true,"deprecated":false},"rollup_user":{"rolename":"rollup_user","reserved":true,"deprecated":false},"snapshot_user":{"rolename":"snapshot_user","reserved":true,"deprecated":false},"superuser":{"rolename":"superuser","reserved":true,"deprecated":false},"test_api_keys":{"rolename":"test_api_keys","reserved":false,"deprecated":false},"test_logstash_reader":{"rolename":"test_logstash_reader","reserved":false,"deprecated":false},"transform_admin":{"rolename":"transform_admin","reserved":true,"deprecated":false},"transform_user":{"rolename":"transform_user","reserved":true,"deprecated":false},"transport_client":{"rolename":"transport_client","reserved":true,"deprecated":false},"watcher_admin":{"rolename":"watcher_admin","reserved":true,"deprecated":false},"watcher_user":{"rolename":"watcher_user","reserved":true,"deprecated":false}}
[00:01:58]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:01:58]               └- ✓ pass  (10.7s) "security app dls should add new role myroleEast"
[00:01:58]             └-> should add new user userEAST 
[00:01:58]               └-> "before each" hook: global before each
[00:01:58]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:58]               │ debg navigate to: http://localhost:6151/app/management
[00:01:58]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229172536 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:58]               │
[00:01:58]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:58]               │ debg ... sleep(700) start
[00:01:59]               │ debg ... sleep(700) end
[00:01:59]               │ debg returned from get, calling refresh
[00:02:00]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:13Z
[00:02:00]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:00]               │
[00:02:00]               │      "
[00:02:00]               │ERROR browser[SEVERE] http://localhost:6151/34233/bundles/core/core.entry.js 75:261772 TypeError: Failed to fetch
[00:02:00]               │          at Fetch._callee3$ (http://localhost:6151/34233/bundles/core/core.entry.js:26:104500)
[00:02:00]               │          at l (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005349)
[00:02:00]               │          at Generator._invoke (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005102)
[00:02:00]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005706)
[00:02:00]               │          at fetch_asyncGeneratorStep (http://localhost:6151/34233/bundles/core/core.entry.js:26:98881)
[00:02:00]               │          at _throw (http://localhost:6151/34233/bundles/core/core.entry.js:26:99289)
[00:02:00]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594229172536 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:00]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:14Z
[00:02:00]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:00]               │
[00:02:00]               │      "
[00:02:00]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:00]               │          appUrl = http://localhost:6151/app/management
[00:02:00]               │ debg TestSubjects.find(kibanaChrome)
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:00]               │ debg ... sleep(501) start
[00:02:01]               │ debg ... sleep(501) end
[00:02:01]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:01]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:01]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:03]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:04]               │ debg TestSubjects.click(users)
[00:02:04]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:04]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:04]               │ debg TestSubjects.click(createUserButton)
[00:02:04]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:04]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:04]               │ debg username = userEast
[00:02:04]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:04]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:04]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:04]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:05]               │ debg TestSubjects.click(passwordInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:05]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:05]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:05]               │ debg TestSubjects.setValue(userFormEmailInput, dlstest@elastic.com)
[00:02:05]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:05]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:05]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:05]               │ debg TestSubjects.find(rolesDropdown)
[00:02:05]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.find(rolesDropdown)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:06]               │ debg After Add role: , userObj.roleName
[00:02:06]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:06]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] added user [userEast]
[00:02:07]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.findAll(userRow)
[00:02:07]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:08]               │ 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:08]               └- ✓ pass  (10.4s) "security app dls should add new user userEAST "
[00:02:08]             └-> user East should only see EAST doc
[00:02:08]               └-> "before each" hook: global before each
[00:02:08]               │ debg SecurityPage.forceLogout
[00:02:08]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:08]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:09]               │ debg Redirecting to /logout to force the logout
[00:02:09]               │ debg Waiting on the login form to appear
[00:02:09]               │ debg Waiting for Login Page to appear.
[00:02:09]               │ debg Waiting up to 100000ms for login page...
[00:02:09]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594229183601 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:09]               │
[00:02:09]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:09]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:12]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:24Z
[00:02:12]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:12]               │
[00:02:12]               │      "
[00:02:12]               │ debg browser[INFO] http://localhost:6151/login?_t=1594229183601 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:12]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:25Z
[00:02:12]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:12]               │
[00:02:12]               │      "
[00:02:12]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:13]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:13]               │ debg navigating to login url: http://localhost:6151/login
[00:02:13]               │ debg navigate to: http://localhost:6151/login
[00:02:13]               │ debg browser[INFO] http://localhost:6151/login?_t=1594229187326 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:13]               │
[00:02:13]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:13]               │ 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/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:28Z
[00:02:14]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:14]               │
[00:02:14]               │      "
[00:02:14]               │ERROR browser[SEVERE] http://localhost:6151/34233/bundles/core/core.entry.js 75:261772 TypeError: Failed to fetch
[00:02:14]               │          at Fetch._callee3$ (http://localhost:6151/34233/bundles/core/core.entry.js:26:104500)
[00:02:14]               │          at l (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005349)
[00:02:14]               │          at Generator._invoke (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005102)
[00:02:14]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005706)
[00:02:14]               │          at fetch_asyncGeneratorStep (http://localhost:6151/34233/bundles/core/core.entry.js:26:98881)
[00:02:14]               │          at _throw (http://localhost:6151/34233/bundles/core/core.entry.js:26:99289)
[00:02:14]               │ debg browser[INFO] http://localhost:6151/login?_t=1594229187326 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:15]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:29Z
[00:02:15]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:15]               │
[00:02:15]               │      "
[00:02:15]               │ debg currentUrl = http://localhost:6151/login
[00:02:15]               │          appUrl = http://localhost:6151/login
[00:02:15]               │ debg TestSubjects.find(kibanaChrome)
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:15]               │ debg ... sleep(501) start
[00:02:15]               │ debg ... sleep(501) end
[00:02:15]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:15]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:15]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:18]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:18]               │ debg Waiting for Login Form to appear.
[00:02:18]               │ debg Waiting up to 100000ms for login form...
[00:02:18]               │ debg TestSubjects.exists(loginForm)
[00:02:18]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:18]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:18]               │ debg TestSubjects.click(loginUsername)
[00:02:18]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:18]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:19]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:19]               │ debg TestSubjects.click(loginPassword)
[00:02:19]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:19]               │ debg TestSubjects.click(loginSubmit)
[00:02:19]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:19]               │ debg Waiting for login result, expected: undefined.
[00:02:19]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:19]               │ debg TestSubjects.exists(userMenuButton)
[00:02:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:21]               │ 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:21]               │
[00:02:21]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:21]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:35Z
[00:02:21]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:21]               │
[00:02:21]               │      "
[00:02:21]               │ debg TestSubjects.exists(userMenu)
[00:02:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:24]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:02:24]               │ debg TestSubjects.click(userMenuButton)
[00:02:24]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:24]               │ debg Waiting up to 20000ms for user menu opened...
[00:02:24]               │ debg TestSubjects.exists(userMenu)
[00:02:24]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:25]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:02:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:02:25]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:02:25]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:02:25]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594229199248#/ 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:25]               │ debg ... sleep(700) start
[00:02:25]               │ debg ... sleep(700) end
[00:02:25]               │ debg returned from get, calling refresh
[00:02:26]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:40Z
[00:02:26]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:26]               │
[00:02:26]               │      "
[00:02:26]               │ERROR browser[SEVERE] http://localhost:6151/34233/bundles/core/core.entry.js 75:261772 TypeError: Failed to fetch
[00:02:26]               │          at Fetch._callee3$ (http://localhost:6151/34233/bundles/core/core.entry.js:26:104500)
[00:02:26]               │          at l (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005349)
[00:02:26]               │          at Generator._invoke (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005102)
[00:02:26]               │          at Generator.forEach.e.<computed> [as throw] (http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:360:1005706)
[00:02:26]               │          at fetch_asyncGeneratorStep (http://localhost:6151/34233/bundles/core/core.entry.js:26:98881)
[00:02:26]               │          at _throw (http://localhost:6151/34233/bundles/core/core.entry.js:26:99289)
[00:02:26]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594229199248#/ 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:26]               │
[00:02:26]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43: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/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:26:41Z
[00:02:27]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:27]               │
[00:02:27]               │      "
[00:02:27]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:02:27]               │          appUrl = http://localhost:6151/app/discover#/
[00:02:27]               │ debg TestSubjects.find(kibanaChrome)
[00:02:27]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:27]               │ debg ... sleep(501) start
[00:02:28]               │ debg ... sleep(501) end
[00:02:28]               │ 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:%270ed29190-c140-11ea-bb0c-4d3408ef0a18%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:28]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:02:28]               │ debg ... sleep(501) start
[00:02:29]               │ debg ... sleep(501) end
[00:02:29]               │ 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:%270ed29190-c140-11ea-bb0c-4d3408ef0a18%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:29]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:29]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:31]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:32]               │ debg isGlobalLoadingIndicatorVisible
[00:02:32]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:33]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:34]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:34]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:34]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:34]               │ debg --- retry.try error: expected '2' to equal '1'
[00:02:34]               │ debg isGlobalLoadingIndicatorVisible
[00:02:34]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:34]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:36]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:36]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:36]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:36]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:36]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:36]               │ debg --- retry.try failed again with the same message...
[00:02:37]               │ debg isGlobalLoadingIndicatorVisible
[00:02:37]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:38]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:39]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:39]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:39]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:39]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:39]               │ debg --- retry.try failed again with the same message...
[00:02:39]               │ debg isGlobalLoadingIndicatorVisible
[00:02:39]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:39]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:41]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:41]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:41]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:41]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:41]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:41]               │ debg --- retry.try failed again with the same message...
[00:02:42]               │ debg isGlobalLoadingIndicatorVisible
[00:02:42]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:42]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:44]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:44]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:44]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:44]               │ debg --- retry.try failed again with the same message...
[00:02:45]               │ debg isGlobalLoadingIndicatorVisible
[00:02:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:46]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:47]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:47]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:47]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:47]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:47]               │ debg --- retry.try failed again with the same message...
[00:02:47]               │ debg isGlobalLoadingIndicatorVisible
[00:02:47]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:47]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:49]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:49]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:49]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:49]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:49]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:49]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:49]               │ debg --- retry.try failed again with the same message...
[00:02:50]               │ debg isGlobalLoadingIndicatorVisible
[00:02:50]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:50]               │ 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:52]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:52]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:52]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:52]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:52]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:52]               │ debg --- retry.try failed again with the same message...
[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:54]               │ 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:03:00]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:00]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:00]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:00]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:00]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:00]               │ 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:02]               │ 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:03]               │ debg isGlobalLoadingIndicatorVisible
[00:03:03]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:03]               │ 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:05]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:05]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:05]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:05]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:05]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:05]               │ 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:07]               │ 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:08]               │ debg isGlobalLoadingIndicatorVisible
[00:03:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:08]               │ 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:13]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:13]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:13]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:13]               │ 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:15]               │ 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:16]               │ debg isGlobalLoadingIndicatorVisible
[00:03:16]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:16]               │ 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:18]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:18]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:18]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:18]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:18]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:18]               │ 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:20]               │ 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:21]               │ debg isGlobalLoadingIndicatorVisible
[00:03:21]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:21]               │ 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:23]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:23]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:23]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:23]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:23]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:23]               │ 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:28]               │ 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:29]               │ debg isGlobalLoadingIndicatorVisible
[00:03:29]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:29]               │ 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:31]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:31]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:31]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:31]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:31]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:31]               │ 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:33]               │ 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:34]               │ debg isGlobalLoadingIndicatorVisible
[00:03:34]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:34]               │ 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:36]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:36]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:36]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:36]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:36]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:36]               │ 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:38]               │ 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:39]               │ debg isGlobalLoadingIndicatorVisible
[00:03:39]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:39]               │ 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:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:44]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:44]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:44]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:44]               │ 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:46]               │ 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:47]               │ debg isGlobalLoadingIndicatorVisible
[00:03:47]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:47]               │ 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:49]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:49]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:49]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:49]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:49]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:49]               │ 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:51]               │ 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:52]               │ debg isGlobalLoadingIndicatorVisible
[00:03:52]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:52]               │ 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:54]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:54]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:54]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:54]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:54]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:54]               │ 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:57]               │ 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:57]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:57]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:57]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:57]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:57]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:57]               │ 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:03:59]               │ 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:00]               │ debg isGlobalLoadingIndicatorVisible
[00:04:00]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:00]               │ 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:02]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:02]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:02]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:02]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:02]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:02]               │ 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:04]               │ 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:05]               │ debg isGlobalLoadingIndicatorVisible
[00:04:05]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:05]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:07]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:07]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:07]               │ 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:08]               │ debg isGlobalLoadingIndicatorVisible
[00:04:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:08]               │ 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:10]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:10]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:10]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:10]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:10]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:10]               │ 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:12]               │ 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:13]               │ debg isGlobalLoadingIndicatorVisible
[00:04:13]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:13]               │ 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: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: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:17]               │ 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: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:20]               │ 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: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:22]               │ 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: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: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: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:28]               │ 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: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:30]               │ 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: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:33]               │ 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:34]               │ 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:34]               │ 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:%270ed29190-c140-11ea-bb0c-4d3408ef0a18%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:04:34]               │ 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:34]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:04:34]               │

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:12]           └-: dls
[00:01:12]             └-> "before all" hook
[00:01:12]             └-> "before all" hook: initialize tests
[00:01:12]               │ info [empty_kibana] Loading "mappings.json"
[00:01:12]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_1/hY-MmKXrQxera8DfaUaEfA] deleting index
[00:01:12]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/Bh-95aitSMuFS0PE-RVWAw] deleting index
[00:01:12]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:01:12]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:13]               │ info [empty_kibana] Created index ".kibana"
[00:01:13]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:13]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana/PYJr9MZSTG-PQ5V5sVxJiQ] update_mapping [_doc]
[00:01:13]               │ debg Migrating saved objects
[00:01:13]               │ proc [kibana]   log   [17:18:10.541] [info][savedobjects-service] Creating index .kibana_2.
[00:01:13]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:13]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:13]               │ proc [kibana]   log   [17:18:10.650] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:13]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:13]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:13]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] 1839 finished with response BulkByScrollResponse[took=2.7ms,timed_out=false,sliceId=null,updated=0,created=0,deleted=0,batches=0,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:01:13]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana/PYJr9MZSTG-PQ5V5sVxJiQ] deleting index
[00:01:13]               │ proc [kibana]   log   [17:18:11.073] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:13]               │ proc [kibana]   log   [17:18:11.085] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:13]               │ proc [kibana]   log   [17:18:11.134] [info][savedobjects-service] Finished in 598ms.
[00:01:13]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:01:13]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/u1pVtL8NTteNhXJS7p5DQQ] update_mapping [_doc]
[00:01:14]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/u1pVtL8NTteNhXJS7p5DQQ] update_mapping [_doc]
[00:01:15]               │ info [security/dlstest] Loading "mappings.json"
[00:01:15]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:15]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:15]               │ info [security/dlstest] Created index "dlstest"
[00:01:15]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:15]               │ info [security/dlstest] Indexed 2 docs into "dlstest"
[00:01:15]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:15]               │ debg navigate to: http://localhost:6151/app/management
[00:01:15]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594228693046 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:15]               │
[00:01:15]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:15]               │ debg ... sleep(700) start
[00:01:16]               │ debg ... sleep(700) end
[00:01:16]               │ debg returned from get, calling refresh
[00:01:17]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594228693046 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:17]               │
[00:01:17]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:17]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594228693046
[00:01:17]               │          appUrl = http://localhost:6151/app/management
[00:01:17]               │ debg TestSubjects.find(kibanaChrome)
[00:01:17]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:18]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:18:15Z
[00:01:18]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:18]               │
[00:01:18]               │      "
[00:01:18]               │ debg Found login page
[00:01:18]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:18]               │ debg TestSubjects.click(loginUsername)
[00:01:18]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:18]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:18]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:18]               │ debg TestSubjects.click(loginPassword)
[00:01:18]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:18]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:19]               │ debg TestSubjects.click(loginSubmit)
[00:01:19]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:19]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:19]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:21]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228693046 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:21]               │
[00:01:21]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:21]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:18:18Z
[00:01:21]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:21]               │
[00:01:21]               │      "
[00:01:21]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228699051 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:21]               │
[00:01:21]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:21]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:21]               │ debg ... sleep(501) start
[00:01:22]               │ debg ... sleep(501) end
[00:01:22]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:22]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:25]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:18:20Z
[00:01:25]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:25]               │
[00:01:25]               │      "
[00:01:25]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:25]               │ debg isGlobalLoadingIndicatorVisible
[00:01:25]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:27]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:27]               │ debg clickKibanaIndexPatterns link
[00:01:27]               │ debg TestSubjects.click(indexPatterns)
[00:01:27]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:27]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:28]               │ debg isGlobalLoadingIndicatorVisible
[00:01:28]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:28]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:28]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:28]               │ debg Waiting up to 20000ms for index pattern info flyout...
[00:01:28]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:28]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:28]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:28]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:28]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:31]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:31]               │ debg isGlobalLoadingIndicatorVisible
[00:01:31]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:31]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:33]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:34]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:34]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:34]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:34]               │ debg isGlobalLoadingIndicatorVisible
[00:01:34]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:34]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:34]               │ debg setIndexPatternField(dlstest)
[00:01:34]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:34]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:35]               │ debg setIndexPatternField set to dlstest
[00:01:35]               │ debg ... sleep(2000) start
[00:01:37]               │ debg ... sleep(2000) end
[00:01:37]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:37]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:37]               │ debg ... sleep(2000) start
[00:01:39]               │ debg ... sleep(2000) end
[00:01:39]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:39]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:40]               │ debg isGlobalLoadingIndicatorVisible
[00:01:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:40]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/u1pVtL8NTteNhXJS7p5DQQ] update_mapping [_doc]
[00:01:40]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] [.kibana_2/u1pVtL8NTteNhXJS7p5DQQ] update_mapping [_doc]
[00:01:41]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/0f6e2ac0-c13f-11ea-9de2-158d175acbaf
[00:01:41]               │ debg --- retry.try error: Index pattern not created
[00:01:41]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/0f6e2ac0-c13f-11ea-9de2-158d175acbaf
[00:01:41]               │ debg --- retry.try failed again with the same message...
[00:01:42]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/0f6e2ac0-c13f-11ea-9de2-158d175acbaf#/?_a=(tab:indexedFields)
[00:01:42]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/0f6e2ac0-c13f-11ea-9de2-158d175acbaf#/?_a=(tab:indexedFields)
[00:01:42]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[00:01:42]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:42]               │ debg navigate to: http://localhost:6151/app/management
[00:01:42]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228719842 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:42]               │
[00:01:42]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:42]               │ debg ... sleep(700) start
[00:01:43]               │ debg ... sleep(700) end
[00:01:43]               │ debg returned from get, calling refresh
[00:01:44]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228719842 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:44]               │
[00:01:44]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:44]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:44]               │          appUrl = http://localhost:6151/app/management
[00:01:44]               │ debg TestSubjects.find(kibanaChrome)
[00:01:44]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:44]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:18:41Z
[00:01:44]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:44]               │
[00:01:44]               │      "
[00:01:45]               │ debg ... sleep(501) start
[00:01:45]               │ debg ... sleep(501) end
[00:01:45]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:45]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:48]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:48]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:48]               │ debg navigate to: http://localhost:6151/app/management
[00:01:48]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228726124 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:48]               │ debg ... sleep(700) start
[00:01:49]               │ debg ... sleep(700) end
[00:01:49]               │ debg returned from get, calling refresh
[00:01:50]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228726124 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:50]               │
[00:01:50]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:50]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:50]               │          appUrl = http://localhost:6151/app/management
[00:01:50]               │ debg TestSubjects.find(kibanaChrome)
[00:01:50]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:50]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:18:47Z
[00:01:50]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:50]               │
[00:01:50]               │      "
[00:01:50]               │ debg ... sleep(501) start
[00:01:51]               │ debg ... sleep(501) end
[00:01:51]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:51]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:51]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:53]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:54]               │ debg TestSubjects.click(roles)
[00:01:54]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:54]             └-> should add new role myroleEast
[00:01:54]               └-> "before each" hook: global before each
[00:01:54]               │ debg TestSubjects.click(createRoleButton)
[00:01:54]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:55]               │ debg roleObj.indices[0].names = dlstest
[00:01:55]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:01:55]               │ debg TestSubjects.find(roleFormNameInput)
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:01:55]               │ debg comboBox.setCustom, comboBoxSelector: indicesInput0, value: dlstest
[00:01:55]               │ debg TestSubjects.find(indicesInput0)
[00:01:55]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"]') with timeout=10000
[00:01:57]               │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:57]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:58]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:01:58]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:58]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:01:58]               │ debg TestSubjects.click(queryInput0)
[00:01:58]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:58]               │ debg TestSubjects.click(addSpacePrivilegeButton)
[00:01:58]               │ debg Find.clickByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:59]               │ debg TestSubjects.click(spaceSelectorComboBox)
[00:01:59]               │ debg Find.clickByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:59]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:59]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:01:59]               │ debg TestSubjects.click(basePrivilegeComboBox)
[00:01:59]               │ debg Find.clickByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:59]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:59]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:02:00]               │ debg TestSubjects.click(createSpacePrivilegeButton)
[00:02:00]               │ debg Find.clickByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:02:00]               │ debg Adding privilege read to role
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:00]               │ debg Find.byButtonText('read') with timeout=10000
[00:02:01]               │ debg ... sleep(250) start
[00:02:01]               │ debg ... sleep(250) end
[00:02:01]               │ debg Adding privilege view_index_metadata to role
[00:02:01]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:01]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:02:02]               │ debg ... sleep(250) start
[00:02:02]               │ debg ... sleep(250) end
[00:02:02]               │ debg click save button
[00:02:02]               │ debg TestSubjects.click(roleFormSaveButton)
[00:02:02]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:02]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:02]               │ debg TestSubjects.exists(roleRow)
[00:02:02]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="roleRow"]') with timeout=120000
[00:02:03]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] added role [myroleEast]
[00:02:03]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:03]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:03]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:03]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:03]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:03]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:03]               │ debg TestSubjects.findAll(roleRow)
[00:02:03]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:02:07]               │ 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_ccr_role":{"rolename":"global_ccr_role","reserved":false,"deprecated":false},"global_devtools_read":{"rolename":"global_devtools_read","reserved":false,"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},"remote_monitoring_collector":{"rolename":"remote_monitoring_collector","reserved":true,"deprecated":false},"reporting_user":{"rolename":"reporting_user","reserved":true,"deprecated":false},"rollup_admin":{"rolename":"rollup_admin","reserved":true,"deprecated":false},"rollup_user":{"rolename":"rollup_user","reserved":true,"deprecated":false},"snapshot_user":{"rolename":"snapshot_user","reserved":true,"deprecated":false},"superuser":{"rolename":"superuser","reserved":true,"deprecated":false},"test_api_keys":{"rolename":"test_api_keys","reserved":false,"deprecated":false},"test_logstash_reader":{"rolename":"test_logstash_reader","reserved":false,"deprecated":false},"transform_admin":{"rolename":"transform_admin","reserved":true,"deprecated":false},"transform_user":{"rolename":"transform_user","reserved":true,"deprecated":false},"transport_client":{"rolename":"transport_client","reserved":true,"deprecated":false},"watcher_admin":{"rolename":"watcher_admin","reserved":true,"deprecated":false},"watcher_user":{"rolename":"watcher_user","reserved":true,"deprecated":false}}
[00:02:07]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:02:07]               └- ✓ pass  (12.8s) "security app dls should add new role myroleEast"
[00:02:07]             └-> should add new user userEAST 
[00:02:07]               └-> "before each" hook: global before each
[00:02:07]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:07]               │ debg navigate to: http://localhost:6151/app/management
[00:02:07]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228745046 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:07]               │
[00:02:07]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:07]               │ debg ... sleep(700) start
[00:02:08]               │ debg ... sleep(700) end
[00:02:08]               │ debg returned from get, calling refresh
[00:02:09]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594228745046 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:09]               │
[00:02:09]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:09]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:09]               │          appUrl = http://localhost:6151/app/management
[00:02:09]               │ debg TestSubjects.find(kibanaChrome)
[00:02:09]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:09]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:06Z
[00:02:09]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:09]               │
[00:02:09]               │      "
[00:02:10]               │ debg ... sleep(501) start
[00:02:10]               │ debg ... sleep(501) end
[00:02:10]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:10]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:13]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:13]               │ debg TestSubjects.click(users)
[00:02:13]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:13]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:13]               │ debg TestSubjects.click(createUserButton)
[00:02:13]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:13]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:14]               │ debg username = userEast
[00:02:14]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:14]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:14]               │ debg TestSubjects.click(passwordInput)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:14]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:14]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.setValue(userFormEmailInput, dlstest@elastic.com)
[00:02:14]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:14]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:14]               │ debg TestSubjects.find(rolesDropdown)
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.find(rolesDropdown)
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:15]               │ debg After Add role: , userObj.roleName
[00:02:15]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:15]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:15]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:15]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:16]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594226619248427993] added user [userEast]
[00:02:16]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:16]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:16]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:16]               │ debg TestSubjects.findAll(userRow)
[00:02:16]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:18]               │ 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:18]               └- ✓ pass  (10.3s) "security app dls should add new user userEAST "
[00:02:18]             └-> user East should only see EAST doc
[00:02:18]               └-> "before each" hook: global before each
[00:02:18]               │ debg SecurityPage.forceLogout
[00:02:18]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:18]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:18]               │ debg Redirecting to /logout to force the logout
[00:02:18]               │ debg Waiting on the login form to appear
[00:02:18]               │ debg Waiting for Login Page to appear.
[00:02:18]               │ debg Waiting up to 100000ms for login page...
[00:02:18]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594228756017 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:18]               │
[00:02:18]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:18]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:21]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:17Z
[00:02:21]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:21]               │
[00:02:21]               │      "
[00:02:21]               │ debg browser[INFO] http://localhost:6151/login?_t=1594228756017 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:21]               │
[00:02:21]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:21]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:18Z
[00:02:21]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:21]               │
[00:02:21]               │      "
[00:02:21]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:22]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:22]               │ debg navigating to login url: http://localhost:6151/login
[00:02:22]               │ debg navigate to: http://localhost:6151/login
[00:02:22]               │ debg ... sleep(700) start
[00:02:22]               │ debg browser[INFO] http://localhost:6151/login?_t=1594228759764 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:22]               │
[00:02:22]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:23]               │ debg ... sleep(700) end
[00:02:23]               │ debg returned from get, calling refresh
[00:02:23]               │ debg browser[INFO] http://localhost:6151/login?_t=1594228759764 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:23]               │
[00:02:23]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:24]               │ debg currentUrl = http://localhost:6151/login
[00:02:24]               │          appUrl = http://localhost:6151/login
[00:02:24]               │ debg TestSubjects.find(kibanaChrome)
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:24]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:21Z
[00:02:24]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:24]               │
[00:02:24]               │      "
[00:02:24]               │ debg ... sleep(501) start
[00:02:25]               │ debg ... sleep(501) end
[00:02:25]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:25]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:27]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:28]               │ debg Waiting for Login Form to appear.
[00:02:28]               │ debg Waiting up to 100000ms for login form...
[00:02:28]               │ debg TestSubjects.exists(loginForm)
[00:02:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:28]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:28]               │ debg TestSubjects.click(loginUsername)
[00:02:28]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:28]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:28]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:28]               │ debg TestSubjects.click(loginPassword)
[00:02:28]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:28]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:28]               │ debg TestSubjects.click(loginSubmit)
[00:02:28]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:28]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:28]               │ debg Waiting for login result, expected: undefined.
[00:02:28]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:28]               │ debg TestSubjects.exists(userMenuButton)
[00:02:28]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:31]               │ 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:31]               │
[00:02:31]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:31]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:28Z
[00:02:31]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:31]               │
[00:02:31]               │      "
[00:02:31]               │ debg --- retry.tryForTime error: [data-test-subj="userMenuButton"] is not displayed
[00:02:32]               │ debg TestSubjects.exists(userMenuButton)
[00:02:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:32]               │ debg TestSubjects.exists(userMenu)
[00:02:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:35]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:02:35]               │ debg TestSubjects.click(userMenuButton)
[00:02:35]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:35]               │ debg Waiting up to 20000ms for user menu opened...
[00:02:35]               │ debg TestSubjects.exists(userMenu)
[00:02:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:35]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:02:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:02:35]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:02:35]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:02:35]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594228773051#/ 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:35]               │
[00:02:35]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:35]               │ debg ... sleep(700) start
[00:02:36]               │ debg ... sleep(700) end
[00:02:36]               │ debg returned from get, calling refresh
[00:02:37]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:34Z
[00:02:37]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:37]               │
[00:02:37]               │      "
[00:02:37]               │ERROR browser[SEVERE] http://localhost:6151/34233/bundles/core/core.entry.js 75:261772 TypeError: Failed to fetch
[00:02:37]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594228773051#/ 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 43:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:38]               │ debg browser[INFO] http://localhost:6151/34233/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 444:106112 "INFO: 2020-07-08T17:19:35Z
[00:02:38]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:38]               │
[00:02:38]               │      "
[00:02:38]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:02:38]               │          appUrl = http://localhost:6151/app/discover#/
[00:02:38]               │ debg TestSubjects.find(kibanaChrome)
[00:02:38]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:38]               │ debg ... sleep(501) start
[00:02:38]               │ debg ... sleep(501) end
[00:02:38]               │ 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:%270f6e2ac0-c13f-11ea-9de2-158d175acbaf%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:38]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:02:39]               │ debg ... sleep(501) start
[00:02:39]               │ debg ... sleep(501) end
[00:02:39]               │ 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:%270f6e2ac0-c13f-11ea-9de2-158d175acbaf%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:39]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:39]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:42]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:42]               │ debg isGlobalLoadingIndicatorVisible
[00:02:42]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:42]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:44]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:44]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:44]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:45]               │ debg --- retry.try error: expected '2' to equal '1'
[00:02:45]               │ debg isGlobalLoadingIndicatorVisible
[00:02:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:47]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:47]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:47]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:47]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:47]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:47]               │ debg --- retry.try failed again with the same message...
[00:02:48]               │ debg isGlobalLoadingIndicatorVisible
[00:02:48]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:48]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:49]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:50]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:50]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:50]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:50]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:50]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:50]               │ debg --- retry.try failed again with the same message...
[00:02:50]               │ debg isGlobalLoadingIndicatorVisible
[00:02:50]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:52]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:52]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:52]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:52]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:52]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:52]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:52]               │ debg --- retry.try failed again with the same message...
[00:02:53]               │ debg isGlobalLoadingIndicatorVisible
[00:02:53]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:54]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:55]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:55]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:55]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:55]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:55]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:55]               │ 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:57]               │ 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:58]               │ debg isGlobalLoadingIndicatorVisible
[00:02:58]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:58]               │ 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:03:00]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:00]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:00]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:00]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:00]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:00]               │ debg --- retry.try failed again with the same message...
[00:03:01]               │ debg isGlobalLoadingIndicatorVisible
[00:03:01]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:01]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:02]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:03]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:03]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:03]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:03]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:03]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:03]               │ debg --- retry.try failed again with the same message...
[00:03:03]               │ debg isGlobalLoadingIndicatorVisible
[00:03:03]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:03]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:05]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:05]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:05]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:05]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:05]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:05]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:05]               │ debg --- retry.try failed again with the same message...
[00:03:06]               │ debg isGlobalLoadingIndicatorVisible
[00:03:06]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:06]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:07]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:08]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:08]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:08]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:08]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:08]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:08]               │ debg --- retry.try failed again with the same message...
[00:03:08]               │ debg isGlobalLoadingIndicatorVisible
[00:03:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:08]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:10]               │ 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:11]               │ debg isGlobalLoadingIndicatorVisible
[00:03:11]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:11]               │ 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:13]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:13]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:13]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:13]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:13]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:13]               │ 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:15]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:15]               │ 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:16]               │ debg isGlobalLoadingIndicatorVisible
[00:03:16]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:16]               │ 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:18]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:18]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:18]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:18]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:18]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:18]               │ debg --- retry.try failed again with the same message...
[00:03:19]               │ debg isGlobalLoadingIndicatorVisible
[00:03:19]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:20]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:21]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:21]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:21]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:21]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:21]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:21]               │ debg --- retry.try failed again with the same message...
[00:03:21]               │ debg isGlobalLoadingIndicatorVisible
[00:03:21]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:23]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:23]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:23]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:23]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:23]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:23]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:23]               │ debg --- retry.try failed again with the same message...
[00:03:24]               │ debg isGlobalLoadingIndicatorVisible
[00:03:24]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:24]               │ 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:26]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:26]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:26]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:26]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:26]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:26]               │ 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:28]               │ 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:29]               │ debg isGlobalLoadingIndicatorVisible
[00:03:29]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:29]               │ 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:31]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:31]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:31]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:31]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:31]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:31]               │ 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:33]               │ 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:34]               │ debg isGlobalLoadingIndicatorVisible
[00:03:34]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:34]               │ 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:36]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:36]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:36]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:36]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:36]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:36]               │ 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:38]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:39]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:39]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:39]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:39]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:39]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:39]               │ debg --- retry.try failed again with the same message...
[00:03:39]               │ debg isGlobalLoadingIndicatorVisible
[00:03:39]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:39]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:41]               │ 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:42]               │ debg isGlobalLoadingIndicatorVisible
[00:03:42]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:42]               │ 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:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:44]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:44]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:44]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:44]               │ 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:46]               │ 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:47]               │ debg isGlobalLoadingIndicatorVisible
[00:03:47]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:47]               │ 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:49]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:49]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:49]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:49]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:49]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:49]               │ 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:51]               │ 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:52]               │ debg isGlobalLoadingIndicatorVisible
[00:03:52]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:54]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:54]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:54]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:54]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:54]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:54]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:54]               │ debg --- retry.try failed again with the same message...
[00:03:55]               │ debg isGlobalLoadingIndicatorVisible
[00:03:55]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:55]               │ 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:57]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:57]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:57]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:57]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:57]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:57]               │ 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:59]               │ 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:04:00]               │ debg --- retry.try failed again with the same message...
[00:04:00]               │ debg isGlobalLoadingIndicatorVisible
[00:04:00]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:00]               │ 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:02]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:02]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:02]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:02]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:02]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:02]               │ 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:04]               │ 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:05]               │ debg isGlobalLoadingIndicatorVisible
[00:04:05]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:05]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:07]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:07]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:07]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:07]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:07]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:07]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:07]               │ debg --- retry.try failed again with the same message...
[00:04:08]               │ debg isGlobalLoadingIndicatorVisible
[00:04:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:08]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[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:08]               │ debg isGlobalLoadingIndicatorVisible
[00:04:08]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:08]               │ 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:10]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:10]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:10]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:10]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:10]               │ 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:25]               │ 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:38]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:39]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:39]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:39]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:39]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:39]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:39]               │ 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:41]               │ 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:42]               │ debg isGlobalLoadingIndicatorVisible
[00:04:42]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:42]               │ 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:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:44]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:44]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:44]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:44]               │ debg --- retry.try failed again with the same message...
[00:04:45]               │ 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:45]               │ 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:%270f6e2ac0-c13f-11ea-9de2-158d175acbaf%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:04:45]               │ 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:45]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:04:45]               │

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 3 more failures, only showing the first 3.

Build metrics

@kbn/optimizer bundle module count

id value diff baseline
securitySolution 789 +6 783

History

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

spong added a commit that referenced this pull request Jul 14, 2020
## Summary

Followup to #70288, which includes:

- [X] Rule Execution logic for:
  - [X] Severity Override
  - [X] Risk Score Override
  - [X] Rule Name Override
  - [X] Timestamp Override
- [X] Support for toggling display of Building Block Rules:
  - [X] Main Detections Page
  - [X] Rule Details Page
- [X] Integrates `AutocompleteField` for:
  - [X] Severity Override
  - [X] Risk Score Override
  - [X] Rule Name Override
  - [X] Timestamp Override
- [X] Fixes rehydration of `EditAboutStep` in `Edit Rule`
- [X] Fixes `Rule Details` Description rollup


Additional followup cleanup:
- [ ] Adds risk_score` to `risk_score_mapping`
- [ ] Improves field validation
- [ ] Disables override fields for ML Rules
- [ ] Orders `SeverityMapping` by `severity` on create/update
- [ ] Allow unbounded max-signals


### Checklist

Delete any items that are not applicable to this PR.

- [X] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)
- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials
  - Syncing w/ @benskelker
- [X] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios
### For maintainers

- [X] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)
spong added a commit that referenced this pull request Jul 14, 2020
… (#71775)

## Summary

Followup to #70288, which includes:

- [X] Rule Execution logic for:
  - [X] Severity Override
  - [X] Risk Score Override
  - [X] Rule Name Override
  - [X] Timestamp Override
- [X] Support for toggling display of Building Block Rules:
  - [X] Main Detections Page
  - [X] Rule Details Page
- [X] Integrates `AutocompleteField` for:
  - [X] Severity Override
  - [X] Risk Score Override
  - [X] Rule Name Override
  - [X] Timestamp Override
- [X] Fixes rehydration of `EditAboutStep` in `Edit Rule`
- [X] Fixes `Rule Details` Description rollup


Additional followup cleanup:
- [ ] Adds risk_score` to `risk_score_mapping`
- [ ] Improves field validation
- [ ] Disables override fields for ML Rules
- [ ] Orders `SeverityMapping` by `severity` on create/update
- [ ] Allow unbounded max-signals


### Checklist

Delete any items that are not applicable to this PR.

- [X] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)
- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials
  - Syncing w/ @benskelker
- [X] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios
### For maintainers

- [X] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)
@MindyRS MindyRS added the Team: SecuritySolution Security Solutions Team working on SIEM, Endpoint, Timeline, Resolver, etc. label Sep 23, 2021
@elasticmachine
Copy link
Contributor

Pinging @elastic/security-solution (Team: SecuritySolution)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:Detection Rules Anything related to Security Solution's Detection Rules release_note:enhancement Team: SecuritySolution Security Solutions Team working on SIEM, Endpoint, Timeline, Resolver, etc. Team:SIEM v7.9.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[SIEM][Detections] Create Detection Rule configuration options for mapping fields
5 participants