mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Security Solution][Resolver] Fix functional test (#77895)
This commit is contained in:
parent
32a8eb2aae
commit
ef55756b8c
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
|||
const queryBar = getService('queryBar');
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/77835
|
||||
describe.skip('Endpoint Event Resolver', function () {
|
||||
describe('Endpoint Event Resolver', function () {
|
||||
before(async () => {
|
||||
await esArchiver.load('endpoint/resolver_tree', { useCreate: true });
|
||||
await pageObjects.hosts.navigateToSecurityHostsPage();
|
||||
|
@ -45,7 +45,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
|||
const nodeData: string[] = [];
|
||||
const TableData: string[] = [];
|
||||
|
||||
const Table = await testSubjects.findAll('resolver:node-list:item');
|
||||
const Table = await testSubjects.findAll('resolver:node-list:node-link:title');
|
||||
for (const value of Table) {
|
||||
const text = await value._webElement.getText();
|
||||
TableData.push(text.split('\n')[0]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue