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

[Composable template] Create / Edit wizard #70220

Merged
merged 12 commits into from
Jul 3, 2020

Conversation

sebelga
Copy link
Contributor

@sebelga sebelga commented Jun 29, 2020

This PR adds the Creation and Edition UI flows for the composable index templates.

How to test

Start by creating a couple of component templates in Dev tools

PUT /_component_template/base-logs
{
  "version": 1,
   "template": {
    "mappings": {
      "properties": {
       "title": { "type": "text"}
      }
    }
  }
}

PUT /_component_template/base-metrics
{
  "version": 1,
   "template": {
    "mappings": {
      "properties": {
       "myField": { "type": "float"}
      }
    },
    "aliases": {
      "someAlias": {
        "index_routing": "1"
      }
    }
  }
}

Now navigate to the index management > Index templates (tab)

  • Click on the "Create template" button
  • Add a "name" and "Index pattern" in the logistics step
  • There should be a "Merge priority" field and a "_meta" field, unique to the composable index template. Priority should only accept numeric values, and _meta any valid JSON object.
  • Click "Next" to navigate to the components
  • The "base-logs" and "base-metrics" components should appear. You can click the one you want to add. If you add both, you should be able to reorder them.
  • Each component has an eye buton icon to be able to view the component inside a flyout.
  • You should be able to search for a component.
  • You should be able to filter component that
    • have mappings
    • have index settings
    • have aliases

In our example, filtering only with index settings should return no results as we haven't added any index settings to our components.

The next 3 steps are the same as with legacy index templates. Add any index settings, mappings or aliases as you want.

  • In the "Review" steo, under the "Request" step, the API endpoint should start with "PUT _index_template/..." (in contrast with legacy index templates whose API is "PUT _template/...")

  • Click "Save template". The template should save and you should be redirected to the index templates list page.

  • There should be an "edit" icon in the table that lets you edit the template. Go ahead and edit the template making any modification to the template. To verify that the modification have been saved, edit once again the template and check the changed made were persisted.

Test that legacy index templates work as before

  • Click "Create legacy index template" button
  • In the "logistics" step, there should be an "Merge order" field (but no "Merge priority" field). And no "_meta" field.
  • There should not be a "Components" step
  • In the "Review" > "Request" tab, the API endpoint should be "PUT _template/"

Screenshots

Screenshot 2020-07-14 at 11 30 54

Screenshot 2020-07-14 at 11 28 47

Screenshot 2020-07-14 at 11 37 16

Release note

The index templates tab allows users to manage both their legacy index templates and composable index templates. Users can create, edit, clone, and delete a composable index template.

@sebelga sebelga requested a review from a team as a code owner June 29, 2020 15:42
@sebelga sebelga added Feature:Index Management Index and index templates UI release_note:skip Skip the PR/issue when compiling release notes Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.9.0 v8.0.0 labels Jun 29, 2020
@elasticmachine
Copy link
Contributor

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

Copy link
Contributor

@alisonelizabeth alisonelizabeth left a comment

Choose a reason for hiding this comment

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

@sebelga this is looking great!

I'd like to do a second round of reviewing the code/testing, but wanted to leave some initial thoughts.

  • Do you think we should differentiate (maybe just via the page title) when the user is creating a legacy template vs. composable template? I also noticed the doc link when creating a legacy template points to composable templates.
  • Is the _meta field optional? If so, should it be marked as so?
  • In the ingest node pipelines UI, we added a toggle for some of the optional fields. I also followed this pattern with component templates. For composable templates, I'm wondering if this also makes sense for version and _meta. WDYT?

Example:
Screen Shot 2020-06-29 at 9 28 00 PM

  • Should the review step for composable templates include the additional fields, if defined (e.g., _meta, priority, composed_of)?

  • Nice job with the DnD functionality! I think it would also be nice if we could somehow explain to the user that the order of the components templates is important.

  • Did you consider using something like EuiSelectable for the component templates list? It feels a little weird to me with the select action on the far right. Possibly just me 😄. I'd be interested in feedback from design and others.

  • Possible bug: If there's an error when saving the template, and the user goes back a step to resolve it, the error persists.

Screen Shot 2020-06-29 at 9 39 39 PM

@@ -150,6 +150,10 @@ export function useMultiContent<T extends object>({
* Validate the multi-content active content(s) in the DOM
*/
const validate = useCallback(async () => {
if (Object.keys(contents.current).length === 0) {
Copy link
Contributor

Choose a reason for hiding this comment

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

👍 thanks for fixing this


function fuzzyMatch(searchValue: string, text: string) {
const pattern = `.*${searchValue.split('').join('.*')}.*`;
const re = new RegExp(pattern);
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: might be more readable as const regex

<EuiFlexItem grow={false}>
<EuiText>{component.name}</EuiText>
</EuiFlexItem>
<EuiFlexItem grow={false} style={{ flexDirection: 'row' }}>
Copy link
Contributor

Choose a reason for hiding this comment

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

Can this inline style be added to component_templates_list_item.scss?

const emptyPromptBody = (
<EuiText color="subdued">
<p>
{text ?? (
Copy link
Contributor

Choose a reason for hiding this comment

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

When/why would text not be provided?

Copy link
Contributor Author

@sebelga sebelga Jul 1, 2020

Choose a reason for hiding this comment

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

I didn't want to mark it as a required prop for the consumer as I defined a default text to be shown. Here we want to have the same copy for the description (below the step title) when there are components, and the description for the empty prompt, so I am explicitly providing the text.

/>
)}
<br />
<EuiLink href={docUri} target="_blank">
Copy link
Contributor

Choose a reason for hiding this comment

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

I know we're not doing this everywhere, but I think it is now preferred to set the external prop for external links.

https://elastic.github.io/eui/#/navigation/link

@@ -0,0 +1,85 @@
/*
Copy link
Contributor

Choose a reason for hiding this comment

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

Do you plan on implementing this in a follow-up PR? (I realize part of it depends on the work I'm doing in #69732.)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes this would be part of the enhancement. Not sure it will make it to 7.9 though.

initialEntries: [`/indices`],
componentRoutePath: `/:section(indices|templates)`,
initialEntries: [`/templates`],
componentRoutePath: `/templates/:templateName?`,
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@cjcenizal for info this is how you get the memory router to provide the "templateName" to the component.

@sebelga
Copy link
Contributor Author

sebelga commented Jul 1, 2020

Thanks for the review @alisonelizabeth ! I addressed most of your concerns, can you have another look?

Do you think we should differentiate (maybe just via the page title) when the user is creating a legacy template vs. composable template? I also noticed the doc link when creating a legacy template points to composable templates.

Is the _meta field optional? If so, should it be marked as so?

Good point, I've added an (optional) copy. Although this has been copied from the mappings editor, where the _meta field is also optional. Not sure if we should align this behavior everywhere at some point...

In the ingest node pipelines UI, we added a toggle for some of the optional fields. I also followed this pattern with component templates. For composable templates, I'm wondering if this also makes sense for version and _meta. WDYT?

As we haven't done it for the optional fields of the legacy wizard ("version", "merge order"), I prefer to leave it consistent for now. We can revisit this later though.

Should the review step for composable templates include the additional fields, if defined (e.g., _meta, priority, composed_of)?

Great catch. Totally forgot! 😄
I updated the review step

Screenshot 2020-07-01 at 16 41 58

Nice job with the DnD functionality! I think it would also be nice if we could somehow explain to the user that the order of the component templates is important.

I am not sure yet how to indicate it. Happy to hear feedback on that at the demo tomorrow.

Did you consider using something like EuiSelectable for the component templates list? It feels a little weird to me with the select action on the far right. Possibly just me 😄. I'd be interested in feedback from design and others.

I did not consider the EuiSelectable as I wanted to have a symmetric UI in the left and right columns. This UX is similar to our tables behavior where actions are on the right. This makes me think that I could make the component name clickable to show the flyout and remove the eye icon.
Let's see what others think at the demo and after playing with it.

Possible bug: If there's an error when saving the template, and the user goes back a step to resolve it, the error persists.

I don't consider this a bug. This is how we currently have it with the legacy wizard. When the user goes back to "index settings" for example, he still sees the error that helps him make any correction. Otherwise, he would have to think "What was that error again?"

@sebelga
Copy link
Contributor Author

sebelga commented Jul 1, 2020

@elasticmachine merge upstream

Copy link
Contributor

@alisonelizabeth alisonelizabeth left a comment

Choose a reason for hiding this comment

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

Thanks for making the changes @sebelga! I think this is in good shape to merge and any other UX improvements can be made in follow-up PR.

I did not consider the EuiSelectable as I wanted to have a symmetric UI in the left and right columns. This UX is similar to our tables behavior where actions are on the right. This makes me think that I could make the component name clickable to show the flyout and remove the eye icon.
Let's see what others think at the demo and after playing with it.

👍 Happy to wait and get feedback from others.

I don't consider this a bug. This is how we currently have it with the legacy wizard. When the user goes back to "index settings" for example, he still sees the error that helps him make any correction. Otherwise, he would have to think "What was that error again?"

Good point. I didn't realize this was existing functionality.


Another thing I noticed, but not blocking - I see you refer to "Component templates" as "Components" in the UI. I think it's worth reaching out to the docs team to see if this shorthand is OK.

Also, as discussed privately, the current index template component integration tests are being skipped. I think we should try to get these tests up and running again at some point to make sure we haven't introduced any regressions.

@sebelga
Copy link
Contributor Author

sebelga commented Jul 2, 2020

@elasticmachine merge upstream

@elasticmachine
Copy link
Contributor

merge conflict between base and head

@cjcenizal
Copy link
Contributor

cjcenizal commented Jul 2, 2020

🎉 This is looking amazing so far, @sebelga! Great work on adding in all of this functionality. I have some suggestions regarding some aspects of the UX which were touched upon during the review.

Possible bug?

What does this 0 mean in the detail panel? Wasn't sure if this was a bug.

image

Composition preview

I agree with Lee's suggestion to hit the simulate endpoint when fetching the content of an index template detail panel, so we can show the user the resolved ILM policy name in the summary tab, as well as prepopulate a "Composition preview" tab with the results.

In terms of where to place a "Preview composition" button within the wizard, I think the bottom bar is still an option if you're open to some hacking. You might be able to resolve the layering conflict with the flyout by adding a custom class to the bottom bar to set a lower z-index than the flyout. This way the flyout will appear on top of the bottom bar.

If you'd prefer not to spend those cycles this late in the dev process, then I suggest placing the button near the step's description so it's impossible to miss. We'd repeat this for each section where a preview makes sense (for example we'd exclude it from the first step). I think another reasonable location would be near the back/next buttons, but on the opposite side.

I suggest that when the user clicks this button for a step, we only show the part of the composition that's relevant for that step -- for example, if you're on the settings step, we only show the composed settings, but not the aliases or mappings. I think this will help the user focus on the changes they're making in that specific step without getting distracted by less-than-relevant information.

image

Making MSA clearer in the table

I realize how confusing it is to see the MSA badges when none are selected. I suggest that if none are selected for a row, we just render the word "None". That'll address the confusion, while giving us back space in the table for showing the data stream configuration.

image

Component template selection UX

I have a couple qualms about the current UX for selecting component templates. I'm mostly concerned about the amount of information we're showing the user at one time. If the user is reviewing an index template but isn't interested in adding new component templates, then the list of unselected component templates isn't useful and isn't pertinent information, so it becomes noise. The essence of UX design is defining points in time at which to surface parts of the UI, and I think we can amortize some parts of this UI along the time dimension to address this concern.

I'm also worried about the scalability of the component template list when there are many component templates to choose from. I think we can solve this by using a standard EUI table component to list unselected component templates instead of a custom UI.

My suggestion would be to leverage the standard table & detail panel pattern we've used elsewhere. It's familiar to users and it doesn't overload them with too much info at one time. When no component templates have been selected, we would just show the standard empty state:

image

The user will open the selection UI inside a flyout, similar to the UX pattern of configuring a rollup job. I can anticipate a user possibly wanting to drill down into a component template so they can be confident they want to select it, but I think we could add that as a future enhancement if we don't have time for 7.9:

image

When component templates are selected, they'd show up in the drag-and-drop list you built, though I suggest adding "columns" to help people vertically scan the MSA information:

image

The user can click the name of the component template to view its details in the flyout:

image

@alisonelizabeth
Copy link
Contributor

What does this 0 mean in the detail panel? Wasn't sure if this was a bug.

@cjcenizal this is a bug and should be fixed in #69732.

@sebelga sebelga merged commit bc1599e into elastic:master Jul 3, 2020
@sebelga sebelga deleted the feature/composable-template-wizard-2 branch July 3, 2020 09:56
gmmorris added a commit to gmmorris/kibana that referenced this pull request Jul 3, 2020
* master: (199 commits)
  [Telemetry] Add documentation about Application Usage (elastic#70624)
  [Ingest Manager] Improve agent unenrollment with unenroll action (elastic#70031)
  Handle timeouts on creating templates (elastic#70635)
  [Lens] Add ability to set colors for y-axis series (elastic#70311)
  [Uptime] Use elastic charts donut (elastic#70364)
  [Ingest Manager] Update registry URL to point to snapshot registry (elastic#70687)
  [Composable template] Create / Edit wizard (elastic#70220)
  [APM] Optimize services overview (elastic#69648)
  [Ingest Pipelines] Load from json (elastic#70297)
  [Rum Dashbaord] Rum selected service view (elastic#70579)
  [Uptime] Prevent duplicate requests on load for index status (elastic#70585)
  [ML] Changing shared module setup function parameters (elastic#70589)
  [Ingest Manager] Add ability to sort to agent configs and package configs (elastic#70676)
  [Alerting] document requirements for developing new action types (elastic#69164)
  Fixed adding an extra space character on selecting alert variable in action text fields (elastic#70028)
  [Maps] show vector tile labels on top (elastic#69444)
  chore(NA): upgrade to lodash@4 (elastic#69868)
  Add Snapshot Restore README with quick-testing steps. (elastic#70494)
  [EPM] Use higher priority than default templates (elastic#70640)
  [Maps] Fix cannot select Solid fill-color when removing fields (elastic#70621)
  ...
gmmorris added a commit to gmmorris/kibana that referenced this pull request Jul 3, 2020
* master:
  [Lens] Fitting functions (elastic#69820)
  [Telemetry] Add documentation about Application Usage (elastic#70624)
  [Ingest Manager] Improve agent unenrollment with unenroll action (elastic#70031)
  Handle timeouts on creating templates (elastic#70635)
  [Lens] Add ability to set colors for y-axis series (elastic#70311)
  [Uptime] Use elastic charts donut (elastic#70364)
  [Ingest Manager] Update registry URL to point to snapshot registry (elastic#70687)
  [Composable template] Create / Edit wizard (elastic#70220)
  [APM] Optimize services overview (elastic#69648)
@sebelga
Copy link
Contributor Author

sebelga commented Jul 6, 2020

Thanks for the review @cjcenizal !

There are great ideas that we'd need to discuss further. As we are very late in the cycle and this week no new functionality should be added I will make the least changes on the current UX. We can revisit in 7.10 the changes you suggest and see if they make sense.
Are we expecting user to create 100+ components? I think that in this case, a user would directly go and search for a component, be it in a table or a list so I am not sure we would gain much by using a table vs a list that has search and filter functionalities. I personally much prefer to scroll a list that clicking "next" 3 times in a pagination system. But your idea of having that list live inside the flyout could work and allow more vertical space to display more list items (still without a table that limits the number of items visible).
But like I said, this deserves to be discussed further to make the best decision.

Composition preview

I will go and put the button on the bottom right of the screen. This is where a user's eyes go automatically. I think it would help a lot.
A bottom bar could work but I don't want to make such a change at this stage.

I suggest that when the user clicks this button for a step, we only show the part of the composition that's relevant for that step

This is a great idea that I'd like to explore in 7.10. But for now, I don't want to lock the user in a certain view. In a follow-up work, I could see that the user has the full view like now and a filter to narrow down what he is interested in.
Otherwise, we'd have another problem: "You said I could preview my template but I am only seeing part of it..." we'd then need a copy explaining that we have zoomed on a slice of the template for the user.

Making MSA clearer in the table

Great suggestion, I will do that 👍

@sebelga sebelga added release_note:enhancement and removed release_note:skip Skip the PR/issue when compiling release notes labels Jul 14, 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/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]         │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[ilm-history-2-000001][0]]])." previous.health="YELLOW" reason="shards started [[ilm-history-2-000001][0]]"
[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-1594721197988499857] [.kibana_2/yPv0M4M3T6WdJJUTp8wPFg] deleting index
[00:01:12]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_1/BWRbJmVCS6uFXplkYKxO_Q] 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-1594721197988499857] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:12]               │ info [empty_kibana] Created index ".kibana"
[00:01:12]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:12]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana/N7XujfygRZiLn0F4-XpgdA] update_mapping [_doc]
[00:01:12]               │ debg Migrating saved objects
[00:01:12]               │ proc [kibana]   log   [10:47:35.561] [info][savedobjects-service] Creating index .kibana_2.
[00:01:12]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:12]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:12]               │ proc [kibana]   log   [10:47:35.662] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:12]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:12]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:12]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] 1859 finished with response BulkByScrollResponse[took=2.5ms,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-1594721197988499857] [.kibana/N7XujfygRZiLn0F4-XpgdA] deleting index
[00:01:13]               │ proc [kibana]   log   [10:47:36.059] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:13]               │ proc [kibana]   log   [10:47:36.065] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:13]               │ proc [kibana]   log   [10:47:36.102] [info][savedobjects-service] Finished in 544ms.
[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-1594721197988499857] [.kibana_2/B6jeVYaDQSWBA4Wo2avvUg] update_mapping [_doc]
[00:01:13]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2/B6jeVYaDQSWBA4Wo2avvUg] update_mapping [_doc]
[00:01:14]               │ info [security/dlstest] Loading "mappings.json"
[00:01:14]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:14]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:14]               │ info [security/dlstest] Created index "dlstest"
[00:01:14]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:14]               │ 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 ... sleep(700) start
[00:01:15]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594723658033 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:15]               │ debg ... sleep(700) end
[00:01:15]               │ debg returned from get, calling refresh
[00:01:16]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:47:38Z
[00:01:16]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:16]               │
[00:01:16]               │      "
[00:01:17]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594723658033 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:17]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:47:39Z
[00:01:17]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:17]               │
[00:01:17]               │      "
[00:01:17]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594723658033
[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:17]               │ debg Found login page
[00:01:17]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:17]               │ debg TestSubjects.click(loginUsername)
[00:01:17]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:17]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:17]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:17]               │ debg TestSubjects.click(loginPassword)
[00:01:17]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:17]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:17]               │ debg TestSubjects.click(loginSubmit)
[00:01:17]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:17]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:17]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:19]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723658033 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:01:19]               │
[00:01:19]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:19]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:47:42Z
[00:01:19]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:19]               │
[00:01:19]               │      "
[00:01:20]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723662837 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:20]               │
[00:01:20]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:20]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:20]               │ debg ... sleep(501) start
[00:01:20]               │ debg ... sleep(501) end
[00:01:20]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:20]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:23]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:47:44Z
[00:01:23]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:23]               │
[00:01:23]               │      "
[00:01:23]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] 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 clickKibanaIndexPatterns link
[00:01:25]               │ debg TestSubjects.click(indexPatterns)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[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:26]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:26]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:26]               │ debg Waiting up to 20000ms for index pattern info flyout...
[00:01:26]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:26]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:26]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:26]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:26]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:29]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:29]               │ debg isGlobalLoadingIndicatorVisible
[00:01:29]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:29]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:31]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:01:31]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:31]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:31]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:31]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[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]               │ debg setIndexPatternField(dlstest)
[00:01:31]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:31]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:33]               │ debg setIndexPatternField set to dlstest
[00:01:33]               │ debg ... sleep(2000) start
[00:01:35]               │ debg ... sleep(2000) end
[00:01:35]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:35]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:35]               │ debg ... sleep(2000) start
[00:01:37]               │ debg ... sleep(2000) end
[00:01:37]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:37]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:37]               │ debg isGlobalLoadingIndicatorVisible
[00:01:37]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:37]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2/B6jeVYaDQSWBA4Wo2avvUg] update_mapping [_doc]
[00:01:39]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/7c7ddc30-c5bf-11ea-9b99-bf8302a3754d
[00:01:39]               │ debg --- retry.try error: Index pattern not created
[00:01:40]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/7c7ddc30-c5bf-11ea-9b99-bf8302a3754d
[00:01:40]               │ debg --- retry.try failed again with the same message...
[00:01:40]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/7c7ddc30-c5bf-11ea-9b99-bf8302a3754d#/?_a=(tab:indexedFields)
[00:01:40]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/7c7ddc30-c5bf-11ea-9b99-bf8302a3754d#/?_a=(tab:indexedFields)
[00:01:40]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[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=1594723683901 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 42: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/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:05Z
[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/34313/bundles/core/core.entry.js 83:261771 TypeError: Failed to fetch
[00:01:42]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723683901 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 42: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/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:06Z
[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 navigating to settings url: http://localhost:6151/app/management
[00:01:47]               │ debg navigate to: http://localhost:6151/app/management
[00:01:47]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723690207 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:47]               │
[00:01:47]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:47]               │ debg ... sleep(700) start
[00:01:48]               │ debg ... sleep(700) end
[00:01:48]               │ debg returned from get, calling refresh
[00:01:48]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:10Z
[00:01:48]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:48]               │
[00:01:48]               │      "
[00:01:48]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723690207 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:49]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:12Z
[00:01:49]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:49]               │
[00:01:49]               │      "
[00:01:49]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:49]               │          appUrl = http://localhost:6151/app/management
[00:01:49]               │ debg TestSubjects.find(kibanaChrome)
[00:01:49]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:50]               │ debg ... sleep(501) start
[00:01:50]               │ debg ... sleep(501) end
[00:01:50]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:50]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:50]               │ 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:53]               │ debg TestSubjects.click(roles)
[00:01:53]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:53]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:01:53]             └-> should add new role myroleEast
[00:01:53]               └-> "before each" hook: global before each
[00:01:53]               │ debg TestSubjects.click(createRoleButton)
[00:01:53]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:53]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:01:54]               │ debg roleObj.indices[0].names = dlstest
[00:01:54]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:01:54]               │ debg TestSubjects.find(roleFormNameInput)
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:01:54]               │ debg comboBox.setCustom, comboBoxSelector: indicesInput0, value: dlstest
[00:01:54]               │ debg TestSubjects.find(indicesInput0)
[00:01:54]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"]') with timeout=10000
[00:01:56]               │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:56]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:01:56]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:56]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:01:56]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:01:56]               │ debg TestSubjects.click(queryInput0)
[00:01:56]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:56]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:01:57]               │ debg TestSubjects.click(addSpacePrivilegeButton)
[00:01:57]               │ debg Find.clickByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:57]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:01:57]               │ debg TestSubjects.click(spaceSelectorComboBox)
[00:01:57]               │ debg Find.clickByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:57]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:01:57]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:01:58]               │ debg TestSubjects.click(basePrivilegeComboBox)
[00:01:58]               │ debg Find.clickByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:01:58]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:01:58]               │ debg TestSubjects.click(createSpacePrivilegeButton)
[00:01:58]               │ debg Find.clickByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:01:58]               │ debg Adding privilege read to role
[00:01:58]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:01:58]               │ debg Find.byButtonText('read') with timeout=10000
[00:01:59]               │ debg ... sleep(250) start
[00:01:59]               │ debg ... sleep(250) end
[00:01:59]               │ debg Adding privilege view_index_metadata to role
[00:01:59]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:00]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:02:00]               │ debg ... sleep(250) start
[00:02:00]               │ debg ... sleep(250) end
[00:02:00]               │ debg click save button
[00:02:00]               │ debg TestSubjects.click(roleFormSaveButton)
[00:02:00]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:00]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:01]               │ debg TestSubjects.exists(roleRow)
[00:02:01]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="roleRow"]') with timeout=120000
[00:02:01]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] added role [myroleEast]
[00:02:01]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:01]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:01]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:01]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:01]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:01]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:01]               │ debg TestSubjects.findAll(roleRow)
[00:02:01]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:02:04]               │ 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:04]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:02:04]               └- ✓ pass  (11.2s) "security app dls should add new role myroleEast"
[00:02:04]             └-> should add new user userEAST 
[00:02:04]               └-> "before each" hook: global before each
[00:02:05]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:05]               │ debg navigate to: http://localhost:6151/app/management
[00:02:05]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723708140 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:05]               │
[00:02:05]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:05]               │ debg ... sleep(700) start
[00:02:06]               │ debg ... sleep(700) end
[00:02:06]               │ debg returned from get, calling refresh
[00:02:07]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:29Z
[00:02:07]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:07]               │
[00:02:07]               │      "
[00:02:07]               │ERROR browser[SEVERE] http://localhost:6151/34313/bundles/core/core.entry.js 83:261771 TypeError: Failed to fetch
[00:02:07]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723708140 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:07]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:30Z
[00:02:07]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:07]               │
[00:02:07]               │      "
[00:02:07]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:07]               │          appUrl = http://localhost:6151/app/management
[00:02:07]               │ debg TestSubjects.find(kibanaChrome)
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:08]               │ debg ... sleep(501) start
[00:02:08]               │ debg ... sleep(501) end
[00:02:08]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:08]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:08]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:11]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:11]               │ debg TestSubjects.click(users)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:11]               │ debg TestSubjects.click(createUserButton)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:11]               │ debg username = userEast
[00:02:11]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:11]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:12]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:12]               │ debg TestSubjects.click(passwordInput)
[00:02:12]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:12]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:12]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:12]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:12]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:12]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:12]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:12]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:12]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:12]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:12]               │ debg TestSubjects.setValue(userFormEmailInput, [email protected])
[00:02:12]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:12]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:12]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:12]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:12]               │ debg TestSubjects.find(rolesDropdown)
[00:02:12]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:13]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:13]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:13]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:13]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:13]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:13]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:13]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:13]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:13]               │ debg TestSubjects.find(rolesDropdown)
[00:02:13]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:14]               │ debg After Add role: , userObj.roleName
[00:02:14]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:14]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] added user [userEast]
[00:02:14]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:14]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:14]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:14]               │ debg TestSubjects.findAll(userRow)
[00:02:14]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:16]               │ 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":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:16]               └- ✓ pass  (11.3s) "security app dls should add new user userEAST "
[00:02:16]             └-> user East should only see EAST doc
[00:02:16]               └-> "before each" hook: global before each
[00:02:16]               │ debg SecurityPage.forceLogout
[00:02:16]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:16]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:17]               │ debg Redirecting to /logout to force the logout
[00:02:17]               │ debg Waiting on the login form to appear
[00:02:17]               │ debg Waiting for Login Page to appear.
[00:02:17]               │ debg Waiting up to 100000ms for login page...
[00:02:17]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594723720115 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:17]               │
[00:02:17]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:17]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:20]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:41Z
[00:02:20]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:20]               │
[00:02:20]               │      "
[00:02:20]               │ debg browser[INFO] http://localhost:6151/login?_t=1594723720115 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:20]               │
[00:02:20]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:20]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:42Z
[00:02:20]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:20]               │
[00:02:20]               │      "
[00:02:20]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:21]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:21]               │ debg navigating to login url: http://localhost:6151/login
[00:02:21]               │ debg navigate to: http://localhost:6151/login
[00:02:21]               │ debg ... sleep(700) start
[00:02:21]               │ debg browser[INFO] http://localhost:6151/login?_t=1594723724083 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:21]               │ debg ... sleep(700) end
[00:02:21]               │ debg returned from get, calling refresh
[00:02:22]               │ debg browser[INFO] http://localhost:6151/login?_t=1594723724083 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:22]               │ debg currentUrl = http://localhost:6151/login
[00:02:22]               │          appUrl = http://localhost:6151/login
[00:02:22]               │ debg TestSubjects.find(kibanaChrome)
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:23]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:45Z
[00:02:23]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:23]               │
[00:02:23]               │      "
[00:02:23]               │ debg ... sleep(501) start
[00:02:23]               │ debg ... sleep(501) end
[00:02:23]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:23]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:23]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:26]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:26]               │ debg Waiting for Login Form to appear.
[00:02:26]               │ debg Waiting up to 100000ms for login form...
[00:02:26]               │ debg TestSubjects.exists(loginForm)
[00:02:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:26]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:26]               │ debg TestSubjects.click(loginUsername)
[00:02:26]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:26]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:27]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:27]               │ debg TestSubjects.click(loginPassword)
[00:02:27]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:27]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:27]               │ debg TestSubjects.click(loginSubmit)
[00:02:27]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:27]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:27]               │ debg Waiting for login result, expected: undefined.
[00:02:27]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:27]               │ debg TestSubjects.exists(userMenuButton)
[00:02:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:29]               │ 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:29]               │
[00:02:29]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:29]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:52Z
[00:02:29]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:29]               │
[00:02:29]               │      "
[00:02:30]               │ debg TestSubjects.exists(userMenu)
[00:02:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:32]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:02:33]               │ debg TestSubjects.click(userMenuButton)
[00:02:33]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:33]               │ debg Waiting up to 20000ms for user menu opened...
[00:02:33]               │ debg TestSubjects.exists(userMenu)
[00:02:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:33]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:02:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:02:33]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:02:33]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:02:33]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594723736411#/ 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:33]               │
[00:02:33]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:33]               │ debg ... sleep(700) start
[00:02:34]               │ debg ... sleep(700) end
[00:02:34]               │ debg returned from get, calling refresh
[00:02:35]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:57Z
[00:02:35]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:35]               │
[00:02:35]               │      "
[00:02:35]               │ERROR browser[SEVERE] http://localhost:6151/34313/bundles/core/core.entry.js 83:261771 TypeError: Failed to fetch
[00:02:35]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594723736411#/ 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 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:36]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:48:58Z
[00:02:36]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:36]               │
[00:02:36]               │      "
[00:02:36]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:02:36]               │          appUrl = http://localhost:6151/app/discover#/
[00:02:36]               │ debg TestSubjects.find(kibanaChrome)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:36]               │ debg ... sleep(501) start
[00:02:36]               │ debg ... sleep(501) end
[00:02:36]               │ 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:%277c7ddc30-c5bf-11ea-9b99-bf8302a3754d%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:36]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:02:37]               │ debg ... sleep(501) start
[00:02:37]               │ debg ... sleep(501) end
[00:02:37]               │ 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:%277c7ddc30-c5bf-11ea-9b99-bf8302a3754d%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:37]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:40]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:40]               │ debg isGlobalLoadingIndicatorVisible
[00:02:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:43]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:43]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:43]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:43]               │ debg --- retry.try error: expected '2' to equal '1'
[00:02:43]               │ debg isGlobalLoadingIndicatorVisible
[00:02:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:45]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:45]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:45]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:45]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:45]               │ debg --- retry.try failed again with the same message...
[00:02:46]               │ debg isGlobalLoadingIndicatorVisible
[00:02:46]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:46]               │ 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:48]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:48]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:48]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:48]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:48]               │ 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:50]               │ 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:51]               │ debg isGlobalLoadingIndicatorVisible
[00:02:51]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:51]               │ 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:53]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:53]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:53]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:53]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:53]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:53]               │ 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:55]               │ 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:56]               │ debg --- retry.try failed again with the same message...
[00:02:56]               │ debg isGlobalLoadingIndicatorVisible
[00:02:56]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:56]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:02:58]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:02:58]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:58]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:58]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:58]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:58]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:58]               │ debg --- retry.try failed again with the same message...
[00:02:59]               │ debg isGlobalLoadingIndicatorVisible
[00:02:59]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:59]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:00]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:01]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:01]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:01]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:01]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:01]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:01]               │ 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:03]               │ 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:04]               │ debg isGlobalLoadingIndicatorVisible
[00:03:04]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:04]               │ 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:06]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:06]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:06]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:06]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:06]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:06]               │ 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:08]               │ 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:09]               │ debg isGlobalLoadingIndicatorVisible
[00:03:09]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:09]               │ 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:11]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:11]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:11]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:11]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:11]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:11]               │ 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:13]               │ 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:14]               │ debg --- retry.try failed again with the same message...
[00:03:14]               │ debg isGlobalLoadingIndicatorVisible
[00:03:14]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:16]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:16]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:16]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:16]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:16]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:16]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:16]               │ debg --- retry.try failed again with the same message...
[00:03:17]               │ debg isGlobalLoadingIndicatorVisible
[00:03:17]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:18]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:19]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:19]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:19]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:19]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:19]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:19]               │ debg --- retry.try failed again with the same message...
[00:03: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:21]               │ 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:22]               │ debg isGlobalLoadingIndicatorVisible
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:23]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:24]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:24]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:24]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:24]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:24]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:24]               │ debg --- retry.try failed again with the same message...
[00:03: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:26]               │ 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:27]               │ debg isGlobalLoadingIndicatorVisible
[00:03:27]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:28]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:29]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:29]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:29]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:29]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:29]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:29]               │ debg --- retry.try failed again with the same message...
[00:03: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:34]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:34]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:34]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:34]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:34]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:34]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:34]               │ debg --- retry.try failed again with the same message...
[00:03:35]               │ debg isGlobalLoadingIndicatorVisible
[00:03:35]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:36]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:37]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:37]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:37]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:37]               │ debg --- retry.try failed again with the same message...
[00:03:37]               │ debg isGlobalLoadingIndicatorVisible
[00:03:37]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:39]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03: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:40]               │ debg isGlobalLoadingIndicatorVisible
[00:03:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:41]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:42]               │ debg --- retry.try failed again with the same message...
[00:03: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:44]               │ 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:45]               │ debg isGlobalLoadingIndicatorVisible
[00:03:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03: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:50]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:50]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:50]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:50]               │ debg --- retry.try failed again with the same message...
[00:03:50]               │ debg isGlobalLoadingIndicatorVisible
[00:03:50]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:52]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:52]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:52]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:52]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:52]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:52]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:52]               │ debg --- retry.try failed again with the same message...
[00:03:53]               │ debg isGlobalLoadingIndicatorVisible
[00:03:53]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:54]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:55]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:55]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:55]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:55]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:55]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:55]               │ debg --- retry.try failed again with the same message...
[00:03: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:57]               │ 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: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:06]               │ debg isGlobalLoadingIndicatorVisible
[00:04:06]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:06]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:06]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:06]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:06]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:06]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:06]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:06]               │ debg --- retry.try failed again with the same message...
[00:04:07]               │ debg isGlobalLoadingIndicatorVisible
[00:04:07]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:07]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:08]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:09]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:09]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:09]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:09]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:09]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:09]               │ debg --- retry.try failed again with the same message...
[00:04:09]               │ debg isGlobalLoadingIndicatorVisible
[00:04:09]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:09]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:11]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:12]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:12]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:12]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:12]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:12]               │ debg --- retry.try failed again with the same message...
[00:04:12]               │ debg isGlobalLoadingIndicatorVisible
[00:04:12]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:12]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:14]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:14]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:14]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:14]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:14]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:14]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:14]               │ debg --- retry.try failed again with the same message...
[00:04:15]               │ debg isGlobalLoadingIndicatorVisible
[00:04:15]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:15]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:16]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:17]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:17]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:17]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:17]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:17]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:17]               │ debg --- retry.try failed again with the same message...
[00:04:17]               │ debg isGlobalLoadingIndicatorVisible
[00:04:17]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:17]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:19]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:19]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:19]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:19]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:19]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:19]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:19]               │ debg --- retry.try failed again with the same message...
[00:04:20]               │ debg isGlobalLoadingIndicatorVisible
[00:04:20]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:21]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:22]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:22]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:22]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:22]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:22]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:22]               │ debg --- retry.try failed again with the same message...
[00:04:22]               │ debg isGlobalLoadingIndicatorVisible
[00:04:22]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:24]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:24]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:24]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:24]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:24]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:24]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:24]               │ debg --- retry.try failed again with the same message...
[00:04:25]               │ debg isGlobalLoadingIndicatorVisible
[00:04:25]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:26]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:27]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:27]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:27]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:27]               │ 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:29]               │ 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:30]               │ debg --- retry.try failed again with the same message...
[00:04:30]               │ debg isGlobalLoadingIndicatorVisible
[00:04:30]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:32]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:32]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:32]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:32]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:32]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:32]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:32]               │ debg --- retry.try failed again with the same message...
[00:04:33]               │ debg isGlobalLoadingIndicatorVisible
[00:04:33]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:34]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:35]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:35]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:35]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:35]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:35]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:35]               │ debg --- retry.try failed again with the same message...
[00:04:35]               │ debg isGlobalLoadingIndicatorVisible
[00:04:35]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:37]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:37]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:37]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:37]               │ debg --- retry.try failed again with the same message...
[00:04:38]               │ debg isGlobalLoadingIndicatorVisible
[00:04:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:39]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:40]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:40]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:40]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:40]               │ debg --- retry.try failed again with the same message...
[00:04:40]               │ debg isGlobalLoadingIndicatorVisible
[00:04:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:42]               │ debg --- retry.try failed again with the same message...
[00:04:43]               │ 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:43]               │ 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:%277c7ddc30-c5bf-11ea-9b99-bf8302a3754d%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:04:43]               │ 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:43]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:04:43]               │

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:20]           └-: dls
[00:01:20]             └-> "before all" hook
[00:01:20]             └-> "before all" hook: initialize tests
[00:01:20]               │ info [empty_kibana] Loading "mappings.json"
[00:01:20]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2/7WbmxlXDRXiczOSNWztthA] deleting index
[00:01:20]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_1/ig2Kn-0VTcSTyZ35sPvp7A] deleting index
[00:01:20]               │ info [empty_kibana] Deleted existing index [".kibana_2",".kibana_1"]
[00:01:20]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana] creating index, cause [api], templates [], shards [1]/[1]
[00:01:20]               │ info [empty_kibana] Created index ".kibana"
[00:01:20]               │ debg [empty_kibana] ".kibana" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:01:20]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana/uQiGGoJ1T_q2RgBBihp5pw] update_mapping [_doc]
[00:01:20]               │ debg Migrating saved objects
[00:01:20]               │ proc [kibana]   log   [10:40:13.600] [info][savedobjects-service] Creating index .kibana_2.
[00:01:20]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1]
[00:01:20]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] updating number_of_replicas to [0] for indices [.kibana_2]
[00:01:20]               │ proc [kibana]   log   [10:40:13.692] [info][savedobjects-service] Reindexing .kibana to .kibana_1
[00:01:20]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_1] creating index, cause [api], templates [], shards [1]/[1]
[00:01:20]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] updating number_of_replicas to [0] for indices [.kibana_1]
[00:01:20]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] 1875 finished with response BulkByScrollResponse[took=2.3ms,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:20]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana/uQiGGoJ1T_q2RgBBihp5pw] deleting index
[00:01:20]               │ proc [kibana]   log   [10:40:14.098] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:01:20]               │ proc [kibana]   log   [10:40:14.106] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:01:20]               │ proc [kibana]   log   [10:40:14.147] [info][savedobjects-service] Finished in 549ms.
[00:01:20]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC"}
[00:01:20]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2/1_kdlFQUTOuK9SEBEgyn4Q] update_mapping [_doc]
[00:01:21]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2/1_kdlFQUTOuK9SEBEgyn4Q] update_mapping [_doc]
[00:01:22]               │ info [security/dlstest] Loading "mappings.json"
[00:01:22]               │ info [security/dlstest] Loading "data.json.gz"
[00:01:22]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [dlstest] creating index, cause [api], templates [], shards [5]/[1]
[00:01:22]               │ info [security/dlstest] Created index "dlstest"
[00:01:22]               │ debg [security/dlstest] "dlstest" settings {"index":{"number_of_replicas":"1","number_of_shards":"5"}}
[00:01:22]               │ info [security/dlstest] Indexed 2 docs into "dlstest"
[00:01:22]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:22]               │ debg navigate to: http://localhost:6151/app/management
[00:01:22]               │ debg ... sleep(700) start
[00:01:22]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594723215997 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:01:22]               │
[00:01:22]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:23]               │ debg ... sleep(700) end
[00:01:23]               │ debg returned from get, calling refresh
[00:01:24]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:40:16Z
[00:01:24]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:24]               │
[00:01:24]               │      "
[00:01:25]               │ debg browser[INFO] http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594723215997 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:01:25]               │
[00:01:25]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:25]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:40:17Z
[00:01:25]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:25]               │
[00:01:25]               │      "
[00:01:25]               │ debg currentUrl = http://localhost:6151/login?next=%2Fapp%2Fmanagement%3F_t%3D1594723215997
[00:01:25]               │          appUrl = http://localhost:6151/app/management
[00:01:25]               │ debg TestSubjects.find(kibanaChrome)
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:25]               │ debg Found login page
[00:01:25]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:01:25]               │ debg TestSubjects.click(loginUsername)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:01:25]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:01:25]               │ debg TestSubjects.click(loginPassword)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:01:25]               │ debg TestSubjects.click(loginSubmit)
[00:01:25]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:01:25]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:01:28]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723215997 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:28]               │
[00:01:28]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:28]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:40:20Z
[00:01:28]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:28]               │
[00:01:28]               │      "
[00:01:28]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723221426 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:28]               │
[00:01:28]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:28]               │ debg Finished login process currentUrl = http://localhost:6151/app/management
[00:01:28]               │ debg ... sleep(501) start
[00:01:28]               │ debg ... sleep(501) end
[00:01:29]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:29]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:29]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:31]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:40:22Z
[00:01:31]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:31]               │
[00:01:31]               │      "
[00:01:31]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:32]               │ debg isGlobalLoadingIndicatorVisible
[00:01:32]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:32]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01: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 clickKibanaIndexPatterns link
[00:01:34]               │ debg TestSubjects.click(indexPatterns)
[00:01:34]               │ debg Find.clickByCssSelector('[data-test-subj="indexPatterns"]') with timeout=10000
[00:01:34]               │ debg Find.findByCssSelector('[data-test-subj="indexPatterns"]') 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 Waiting up to 20000ms for index pattern info flyout...
[00:01:34]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:34]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:34]               │ debg TestSubjects.click(CreateIndexPatternPrompt > euiFlyoutCloseButton)
[00:01:34]               │ debg Find.clickByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:34]               │ debg Find.findByCssSelector('[data-test-subj="CreateIndexPatternPrompt"] [data-test-subj="euiFlyoutCloseButton"]') with timeout=10000
[00:01:35]               │ debg TestSubjects.exists(CreateIndexPatternPrompt)
[00:01:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="CreateIndexPatternPrompt"]') with timeout=2500
[00:01:37]               │ debg --- retry.tryForTime error: [data-test-subj="CreateIndexPatternPrompt"] is not displayed
[00:01:38]               │ debg isGlobalLoadingIndicatorVisible
[00:01:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:40]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[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]               │ debg TestSubjects.click(createIndexPatternButton)
[00:01:40]               │ debg Find.clickByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:40]               │ 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]               │ debg setIndexPatternField(dlstest)
[00:01:40]               │ debg TestSubjects.find(createIndexPatternNameInput)
[00:01:40]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternNameInput"]') with timeout=10000
[00:01:42]               │ debg setIndexPatternField set to dlstest
[00:01:42]               │ debg ... sleep(2000) start
[00:01:44]               │ debg ... sleep(2000) end
[00:01:44]               │ debg TestSubjects.find(createIndexPatternGoToStep2Button)
[00:01:44]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternGoToStep2Button"]') with timeout=10000
[00:01:44]               │ debg ... sleep(2000) start
[00:01:46]               │ debg ... sleep(2000) end
[00:01:46]               │ debg TestSubjects.find(createIndexPatternButton)
[00:01:46]               │ debg Find.findByCssSelector('[data-test-subj="createIndexPatternButton"]') with timeout=10000
[00:01:46]               │ debg isGlobalLoadingIndicatorVisible
[00:01:46]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:01:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:01:46]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:01:46]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:01:46]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.kibana_2/1_kdlFQUTOuK9SEBEgyn4Q] update_mapping [_doc]
[00:01:48]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/75b55e60-c5be-11ea-89c3-974e6b70d4ce
[00:01:48]               │ debg --- retry.try error: Index pattern not created
[00:01:49]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/75b55e60-c5be-11ea-89c3-974e6b70d4ce
[00:01:49]               │ debg --- retry.try failed again with the same message...
[00:01:49]               │ info currentUrl http://localhost:6151/app/management/kibana/indexPatterns/patterns/75b55e60-c5be-11ea-89c3-974e6b70d4ce#/?_a=(tab:indexedFields)
[00:01:49]               │ debg Index pattern created: http://localhost:6151/app/management/kibana/indexPatterns/patterns/75b55e60-c5be-11ea-89c3-974e6b70d4ce#/?_a=(tab:indexedFields)
[00:01:49]               │ debg index pattern ID:  ?_a=(tab:indexedFields)
[00:01:49]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:49]               │ debg navigate to: http://localhost:6151/app/management
[00:01:49]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723242885 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:49]               │
[00:01:49]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:49]               │ debg ... sleep(700) start
[00:01:50]               │ debg ... sleep(700) end
[00:01:50]               │ debg returned from get, calling refresh
[00:01:51]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723242885 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:51]               │
[00:01:51]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:51]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:51]               │          appUrl = http://localhost:6151/app/management
[00:01:51]               │ debg TestSubjects.find(kibanaChrome)
[00:01:51]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:52]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:40:44Z
[00:01:52]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:52]               │
[00:01:52]               │      "
[00:01:52]               │ debg ... sleep(501) start
[00:01:52]               │ debg ... sleep(501) end
[00:01:52]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:52]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:01:55]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:01:56]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:01:56]               │ debg navigate to: http://localhost:6151/app/management
[00:01:56]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723249229 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:56]               │
[00:01:56]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:56]               │ debg ... sleep(700) start
[00:01:56]               │ debg ... sleep(700) end
[00:01:56]               │ debg returned from get, calling refresh
[00:01:57]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723249229 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:57]               │
[00:01:57]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:01:57]               │ debg currentUrl = http://localhost:6151/app/management
[00:01:57]               │          appUrl = http://localhost:6151/app/management
[00:01:57]               │ debg TestSubjects.find(kibanaChrome)
[00:01:57]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:01:58]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:40:50Z
[00:01:58]               │        Adding connection to http://localhost:6151/elasticsearch
[00:01:58]               │
[00:01:58]               │      "
[00:01:58]               │ debg ... sleep(501) start
[00:01:59]               │ debg ... sleep(501) end
[00:01:59]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:01:59]               │ debg TestSubjects.exists(statusPageContainer)
[00:01:59]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:01]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:02]               │ debg TestSubjects.click(roles)
[00:02:02]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:02]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:02]             └-> should add new role myroleEast
[00:02:02]               └-> "before each" hook: global before each
[00:02:02]               │ debg TestSubjects.click(createRoleButton)
[00:02:02]               │ debg Find.clickByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:02:02]               │ debg Find.findByCssSelector('[data-test-subj="createRoleButton"]') with timeout=10000
[00:02:03]               │ debg roleObj.indices[0].names = dlstest
[00:02:03]               │ debg TestSubjects.append(roleFormNameInput, myroleEast)
[00:02:03]               │ debg TestSubjects.find(roleFormNameInput)
[00:02:03]               │ debg Find.findByCssSelector('[data-test-subj="roleFormNameInput"]') with timeout=10000
[00:02:03]               │ debg comboBox.setCustom, comboBoxSelector: indicesInput0, value: dlstest
[00:02:03]               │ debg TestSubjects.find(indicesInput0)
[00:02:03]               │ debg Find.findByCssSelector('[data-test-subj="indicesInput0"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:02:06]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:02:06]               │ debg TestSubjects.click(restrictDocumentsQuery0)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="restrictDocumentsQuery0"]') with timeout=10000
[00:02:06]               │ debg TestSubjects.setValue(queryInput0, {"match": {"region": "EAST"}})
[00:02:06]               │ debg TestSubjects.click(queryInput0)
[00:02:06]               │ debg Find.clickByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:02:06]               │ debg Find.findByCssSelector('[data-test-subj="queryInput0"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.click(addSpacePrivilegeButton)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="addSpacePrivilegeButton"]') with timeout=10000
[00:02:07]               │ debg TestSubjects.click(spaceSelectorComboBox)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="spaceSelectorComboBox"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('#spaceOption_\*') with timeout=10000
[00:02:07]               │ debg TestSubjects.click(basePrivilegeComboBox)
[00:02:07]               │ debg Find.clickByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('[data-test-subj="basePrivilegeComboBox"]') with timeout=10000
[00:02:07]               │ debg Find.findByCssSelector('#basePrivilege_all') with timeout=10000
[00:02:08]               │ debg TestSubjects.click(createSpacePrivilegeButton)
[00:02:08]               │ debg Find.clickByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:02:08]               │ debg Find.findByCssSelector('[data-test-subj="createSpacePrivilegeButton"]') with timeout=10000
[00:02:08]               │ debg Adding privilege read to role
[00:02:08]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:08]               │ debg Find.byButtonText('read') with timeout=10000
[00:02:09]               │ debg ... sleep(250) start
[00:02:09]               │ debg ... sleep(250) end
[00:02:09]               │ debg Adding privilege view_index_metadata to role
[00:02:09]               │ debg Find.findByCssSelector('[data-test-subj="privilegesInput0"] input') with timeout=10000
[00:02:09]               │ debg Find.byButtonText('view_index_metadata') with timeout=10000
[00:02:10]               │ debg ... sleep(250) start
[00:02:10]               │ debg ... sleep(250) end
[00:02:10]               │ debg click save button
[00:02:10]               │ debg TestSubjects.click(roleFormSaveButton)
[00:02:10]               │ debg Find.clickByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:10]               │ debg Find.findByCssSelector('[data-test-subj="roleFormSaveButton"]') with timeout=10000
[00:02:10]               │ debg TestSubjects.exists(roleRow)
[00:02:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="roleRow"]') with timeout=120000
[00:02:10]               │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] added role [myroleEast]
[00:02:11]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:11]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:11]               │ debg TestSubjects.findAll(roleRow)
[00:02:11]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:02:15]               │ 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:15]               │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/session/Security_Roles.png"
[00:02:15]               └- ✓ pass  (12.6s) "security app dls should add new role myroleEast"
[00:02:15]             └-> should add new user userEAST 
[00:02:15]               └-> "before each" hook: global before each
[00:02:15]               │ debg navigating to settings url: http://localhost:6151/app/management
[00:02:15]               │ debg navigate to: http://localhost:6151/app/management
[00:02:15]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723268535 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:15]               │
[00:02:15]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:15]               │ debg ... sleep(700) start
[00:02:16]               │ debg ... sleep(700) end
[00:02:16]               │ debg returned from get, calling refresh
[00:02:16]               │ debg browser[INFO] http://localhost:6151/app/management?_t=1594723268535 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:16]               │
[00:02:16]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:16]               │ debg currentUrl = http://localhost:6151/app/management
[00:02:16]               │          appUrl = http://localhost:6151/app/management
[00:02:16]               │ debg TestSubjects.find(kibanaChrome)
[00:02:16]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:17]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:10Z
[00:02:17]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:17]               │
[00:02:17]               │      "
[00:02:17]               │ debg ... sleep(501) start
[00:02:18]               │ debg ... sleep(501) end
[00:02:18]               │ debg in navigateTo url = http://localhost:6151/app/management
[00:02:18]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:18]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:20]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:21]               │ debg TestSubjects.click(users)
[00:02:21]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:21]               │ debg TestSubjects.click(createUserButton)
[00:02:21]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:21]               │ debg username = userEast
[00:02:21]               │ debg TestSubjects.setValue(userFormUserNameInput, userEast)
[00:02:21]               │ debg TestSubjects.click(userFormUserNameInput)
[00:02:21]               │ debg Find.clickByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:21]               │ debg Find.findByCssSelector('[data-test-subj="userFormUserNameInput"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.setValue(passwordInput, changeme)
[00:02:22]               │ debg TestSubjects.click(passwordInput)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="passwordInput"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.setValue(passwordConfirmationInput, changeme)
[00:02:22]               │ debg TestSubjects.click(passwordConfirmationInput)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="passwordConfirmationInput"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.setValue(userFormFullNameInput, dls EAST)
[00:02:22]               │ debg TestSubjects.click(userFormFullNameInput)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="userFormFullNameInput"]') with timeout=10000
[00:02:22]               │ debg TestSubjects.setValue(userFormEmailInput, [email protected])
[00:02:22]               │ debg TestSubjects.click(userFormEmailInput)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="userFormEmailInput"]') with timeout=10000
[00:02:23]               │ debg Add roles:  [ 'kibana_admin', 'myroleEast' ]
[00:02:23]               │ debg TestSubjects.find(rolesDropdown)
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.click(roleOption-kibana_admin)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.find(roleOption-kibana_admin)
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-kibana_admin"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.find(rolesDropdown)
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:24]               │ debg TestSubjects.click(roleOption-myroleEast)
[00:02:24]               │ debg Find.clickByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:24]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:24]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:24]               │ debg TestSubjects.find(roleOption-myroleEast)
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="roleOption-myroleEast"]') with timeout=10000
[00:02:24]               │ debg After Add role: , userObj.roleName
[00:02:24]               │ debg TestSubjects.click(userFormSaveButton)
[00:02:24]               │ debg Find.clickByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="userFormSaveButton"]') with timeout=10000
[00:02:24]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:24]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:24]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] added user [userEast]
[00:02:24]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:24]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:24]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:25]               │ debg TestSubjects.findAll(userRow)
[00:02:25]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:27]               │ 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":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:27]               └- ✓ pass  (12.1s) "security app dls should add new user userEAST "
[00:02:27]             └-> user East should only see EAST doc
[00:02:27]               └-> "before each" hook: global before each
[00:02:27]               │ debg SecurityPage.forceLogout
[00:02:27]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:02:27]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:28]               │ debg Redirecting to /logout to force the logout
[00:02:28]               │ debg Waiting on the login form to appear
[00:02:28]               │ debg Waiting for Login Page to appear.
[00:02:28]               │ debg Waiting up to 100000ms for login page...
[00:02:28]               │ debg browser[INFO] http://localhost:6151/logout?_t=1594723281273 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:28]               │
[00:02:28]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:28]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:31]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:22Z
[00:02:31]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:31]               │
[00:02:31]               │      "
[00:02:31]               │ debg browser[INFO] http://localhost:6151/login?_t=1594723281273 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 42: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/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:24Z
[00:02:31]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:31]               │
[00:02:31]               │      "
[00:02:31]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:02:32]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:02:32]               │ debg navigating to login url: http://localhost:6151/login
[00:02:32]               │ debg navigate to: http://localhost:6151/login
[00:02:32]               │ debg ... sleep(700) start
[00:02:32]               │ debg browser[INFO] http://localhost:6151/login?_t=1594723285981 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:32]               │
[00:02:32]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:33]               │ debg ... sleep(700) end
[00:02:33]               │ debg returned from get, calling refresh
[00:02:34]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:27Z
[00:02:34]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:34]               │
[00:02:34]               │      "
[00:02:34]               │ERROR browser[SEVERE] http://localhost:6151/34313/bundles/core/core.entry.js 83:261771 TypeError: Failed to fetch
[00:02:34]               │ debg browser[INFO] http://localhost:6151/login?_t=1594723285981 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:34]               │
[00:02:34]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:35]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:28Z
[00:02:35]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:35]               │
[00:02:35]               │      "
[00:02:35]               │ debg currentUrl = http://localhost:6151/login
[00:02:35]               │          appUrl = http://localhost:6151/login
[00:02:35]               │ debg TestSubjects.find(kibanaChrome)
[00:02:35]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:35]               │ debg ... sleep(501) start
[00:02:36]               │ debg ... sleep(501) end
[00:02:36]               │ debg in navigateTo url = http://localhost:6151/login
[00:02:36]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:36]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:38]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:39]               │ debg Waiting for Login Form to appear.
[00:02:39]               │ debg Waiting up to 100000ms for login form...
[00:02:39]               │ debg TestSubjects.exists(loginForm)
[00:02:39]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="loginForm"]') with timeout=2500
[00:02:39]               │ debg TestSubjects.setValue(loginUsername, userEast)
[00:02:39]               │ debg TestSubjects.click(loginUsername)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:39]               │ debg TestSubjects.click(loginPassword)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:39]               │ debg TestSubjects.click(loginSubmit)
[00:02:39]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:39]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:39]               │ debg Waiting for login result, expected: undefined.
[00:02:39]               │ debg Waiting up to 20000ms for logout button visible...
[00:02:39]               │ debg TestSubjects.exists(userMenuButton)
[00:02:39]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:42]               │ 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:42]               │
[00:02:42]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:42]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:34Z
[00:02:42]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:42]               │
[00:02:42]               │      "
[00:02:42]               │ debg --- retry.tryForTime error: [data-test-subj="userMenuButton"] is not displayed
[00:02:43]               │ debg TestSubjects.exists(userMenuButton)
[00:02:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:02:43]               │ debg TestSubjects.exists(userMenu)
[00:02:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:45]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:02:46]               │ debg TestSubjects.click(userMenuButton)
[00:02:46]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:46]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:02:46]               │ debg Waiting up to 20000ms for user menu opened...
[00:02:46]               │ debg TestSubjects.exists(userMenu)
[00:02:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:02:46]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:02:46]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:02:46]               │ debg navigating to discover url: http://localhost:6151/app/discover#/
[00:02:46]               │ debg navigate to: http://localhost:6151/app/discover#/
[00:02:46]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594723299549#/ 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:46]               │
[00:02:46]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:46]               │ debg ... sleep(700) start
[00:02:47]               │ debg ... sleep(700) end
[00:02:47]               │ debg returned from get, calling refresh
[00:02:48]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:40Z
[00:02:48]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:48]               │
[00:02:48]               │      "
[00:02:48]               │ERROR browser[SEVERE] http://localhost:6151/34313/bundles/core/core.entry.js 83:261771 TypeError: Failed to fetch
[00:02:48]               │ debg browser[INFO] http://localhost:6151/app/discover?_t=1594723299549#/ 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:48]               │
[00:02:48]               │ debg browser[INFO] http://localhost:6151/bundles/app/core/bootstrap.js 42:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:48]               │ debg browser[INFO] http://localhost:6151/34313/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 452:106112 "INFO: 2020-07-14T10:41:41Z
[00:02:48]               │        Adding connection to http://localhost:6151/elasticsearch
[00:02:48]               │
[00:02:48]               │      "
[00:02:48]               │ debg currentUrl = http://localhost:6151/app/discover#/
[00:02:48]               │          appUrl = http://localhost:6151/app/discover#/
[00:02:48]               │ debg TestSubjects.find(kibanaChrome)
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:49]               │ debg ... sleep(501) start
[00:02:49]               │ debg ... sleep(501) end
[00:02:49]               │ 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:%2775b55e60-c5be-11ea-89c3-974e6b70d4ce%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:49]               │ debg --- retry.try error: URL changed, waiting for it to settle
[00:02:50]               │ debg ... sleep(501) start
[00:02:50]               │ debg ... sleep(501) end
[00:02:50]               │ 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:%2775b55e60-c5be-11ea-89c3-974e6b70d4ce%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:02:50]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:53]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[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:55]               │ 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 error: expected '2' to equal '1'
[00:02:56]               │ debg isGlobalLoadingIndicatorVisible
[00:02:56]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:02:56]               │ 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:58]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:58]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:58]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:02:58]               │ debg TestSubjects.find(discoverQueryHits)
[00:02:58]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:02:58]               │ 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:03:00]               │ 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:04]               │ debg isGlobalLoadingIndicatorVisible
[00:03:04]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:04]               │ 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:06]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:06]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:06]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:06]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:06]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:06]               │ 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:08]               │ 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:09]               │ debg isGlobalLoadingIndicatorVisible
[00:03:09]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:09]               │ 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:11]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:11]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:11]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:11]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:11]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:11]               │ 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:13]               │ 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:14]               │ debg isGlobalLoadingIndicatorVisible
[00:03:14]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:15]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:16]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:16]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:16]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:16]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:16]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:16]               │ debg --- retry.try failed again with the same message...
[00:03: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:22]               │ debg isGlobalLoadingIndicatorVisible
[00:03:22]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:23]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:24]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:24]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:24]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:24]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:24]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:24]               │ debg --- retry.try failed again with the same message...
[00:03: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:26]               │ 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:27]               │ debg isGlobalLoadingIndicatorVisible
[00:03:27]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:28]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:29]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:29]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:29]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:29]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:29]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:29]               │ debg --- retry.try failed again with the same message...
[00:03: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:39]               │ 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:40]               │ debg isGlobalLoadingIndicatorVisible
[00:03:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03:41]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:03:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:03:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:03:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:03:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:03:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:03:42]               │ debg --- retry.try failed again with the same message...
[00:03: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:44]               │ 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:45]               │ debg isGlobalLoadingIndicatorVisible
[00:03:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:03:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:03: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:55]               │ 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:57]               │ 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: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: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:09]               │ 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:10]               │ debg isGlobalLoadingIndicatorVisible
[00:04:10]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:10]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:12]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:12]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:12]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:12]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:12]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:12]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04: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:19]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:19]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:19]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:19]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:19]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:19]               │ debg --- retry.try failed again with the same message...
[00:04:20]               │ debg isGlobalLoadingIndicatorVisible
[00:04:20]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:21]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:22]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:22]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:22]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:22]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:22]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:22]               │ debg --- retry.try failed again with the same message...
[00:04:22]               │ debg isGlobalLoadingIndicatorVisible
[00:04:22]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:22]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:24]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:24]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:24]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:24]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:24]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:24]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:24]               │ debg --- retry.try failed again with the same message...
[00:04:25]               │ debg isGlobalLoadingIndicatorVisible
[00:04:25]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:25]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:26]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:27]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:27]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:27]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:27]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:27]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:27]               │ 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:29]               │ 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:30]               │ debg isGlobalLoadingIndicatorVisible
[00:04:30]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:30]               │ 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:32]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:32]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:32]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:32]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:32]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:32]               │ debg --- retry.try failed again with the same message...
[00:04:33]               │ debg isGlobalLoadingIndicatorVisible
[00:04:33]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:34]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:35]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:35]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:35]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:35]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:35]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:35]               │ debg --- retry.try failed again with the same message...
[00:04:35]               │ debg isGlobalLoadingIndicatorVisible
[00:04:35]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:35]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:37]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:37]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:37]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:37]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:37]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:37]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:37]               │ debg --- retry.try failed again with the same message...
[00:04:38]               │ debg isGlobalLoadingIndicatorVisible
[00:04:38]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:39]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:40]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:40]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:40]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:40]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:40]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:40]               │ debg --- retry.try failed again with the same message...
[00:04:40]               │ debg isGlobalLoadingIndicatorVisible
[00:04:40]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:40]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:42]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:42]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:42]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:42]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:42]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:42]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:42]               │ debg --- retry.try failed again with the same message...
[00:04:43]               │ debg isGlobalLoadingIndicatorVisible
[00:04:43]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:43]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:44]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:45]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:45]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:45]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:45]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:45]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:45]               │ debg --- retry.try failed again with the same message...
[00:04:45]               │ debg isGlobalLoadingIndicatorVisible
[00:04:45]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:45]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:47]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:47]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:47]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:47]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:47]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:47]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:47]               │ debg --- retry.try failed again with the same message...
[00:04:48]               │ debg isGlobalLoadingIndicatorVisible
[00:04:48]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:48]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:49]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:50]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:50]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:50]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:50]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:50]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:50]               │ debg --- retry.try failed again with the same message...
[00:04:50]               │ debg isGlobalLoadingIndicatorVisible
[00:04:50]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:50]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:52]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:53]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:53]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:53]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:53]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:53]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:53]               │ debg --- retry.try failed again with the same message...
[00:04:53]               │ debg isGlobalLoadingIndicatorVisible
[00:04:53]               │ debg TestSubjects.exists(globalLoadingIndicator)
[00:04:53]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:04:55]               │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:04:55]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:04:55]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:04:55]               │ debg TestSubjects.getVisibleText(discoverQueryHits)
[00:04:55]               │ debg TestSubjects.find(discoverQueryHits)
[00:04:55]               │ debg Find.findByCssSelector('[data-test-subj="discoverQueryHits"]') with timeout=10000
[00:04:55]               │ debg --- retry.try failed again with the same message...
[00:04:56]               │ 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:56]               │ 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:%2775b55e60-c5be-11ea-89c3-974e6b70d4ce%27,interval:auto,query:(language:kuery,query:%27%27),sort:!())
[00:04:56]               │ 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:56]               └- ✖ fail: "security app dls user East should only see EAST doc"
[00:04:56]               │

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 / X-Pack API Integration Tests.x-pack/test/api_integration/apis/management/index_management/data_streams·ts.apis management index management Data streams Get returns an array of all data streams

Link to Jenkins

Standard Out

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

[00:00:00]       │
[00:00:00]         └-: apis
[00:00:00]           └-> "before all" hook
[00:04:37]           └-: management
[00:04:37]             └-> "before all" hook
[00:04:57]             └-: index management
[00:04:57]               └-> "before all" hook
[00:05:00]               └-: Data streams
[00:05:00]                 └-> "before all" hook
[00:05:00]                 └-: Get
[00:05:00]                   └-> "before all" hook
[00:05:00]                   └-> "before all" hook
[00:05:00]                     │ info [o.e.c.m.MetadataIndexTemplateService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] adding index template [test-data-stream] for index patterns [test-data-stream*]
[00:05:00]                     │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] [.ds-test-data-stream-000001] creating index, cause [initialize_data_stream], templates [test-data-stream], shards [1]/[1]
[00:05:00]                     │ info [o.e.c.m.MetadataCreateDataStreamService] [kibana-ci-immutable-ubuntu-18-tests-xl-1594721197988499857] adding data stream [test-data-stream]
[00:05:00]                   └-> returns an array of all data streams
[00:05:00]                     └-> "before each" hook: global before each
[00:05:00]                     └- ✖ fail: "apis management index management Data streams Get returns an array of all data streams"
[00:05:00]                     │

Stack Trace

Error: expected 200 "OK", got 500 "Internal Server Error"
    at Test._assertStatus (/dev/shm/workspace/kibana/node_modules/supertest/lib/test.js:268:12)
    at Test._assertFunction (/dev/shm/workspace/kibana/node_modules/supertest/lib/test.js:283:11)
    at Test.assert (/dev/shm/workspace/kibana/node_modules/supertest/lib/test.js:173:18)
    at assert (/dev/shm/workspace/kibana/node_modules/supertest/lib/test.js:131:12)
    at /dev/shm/workspace/kibana/node_modules/supertest/lib/test.js:128:5
    at Test.Request.callback (/dev/shm/workspace/kibana/node_modules/superagent/lib/node/index.js:718:3)
    at parser (/dev/shm/workspace/kibana/node_modules/superagent/lib/node/index.js:906:18)
    at IncomingMessage.res.on (/dev/shm/workspace/kibana/node_modules/superagent/lib/node/parsers/json.js:19:7)
    at endReadableNT (_stream_readable.js:1145:12)
    at process._tickCallback (internal/process/next_tick.js:63:19)

and 1 more failures, only showing the first 3.

Build metrics

@kbn/optimizer bundle module count

id value diff baseline
indexManagement 172 +26 146

History

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature:Index Management Index and index templates UI release_note:enhancement Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more v7.9.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants