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

Fixes for the Ticket 78375 #79004

Merged
merged 1 commit into from
Sep 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions x-pack/test/security_solution_endpoint/apps/endpoint/resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const esArchiver = getService('esArchiver');
const queryBar = getService('queryBar');
const browser = getService('browser');

// FLAKY: https://github.com/elastic/kibana/issues/78375
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();
Expand All @@ -23,9 +23,11 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await pageObjects.timePicker.setAbsoluteRange(fromTime, toTime);
await queryBar.setQuery('event.dataset : endpoint.events.file');
await queryBar.submitQuery();
await (await testSubjects.find('draggable-content-host.name')).click();
await browser.refresh();
await browser.setWindowSize(1800, 1200);
await testSubjects.click('draggable-content-host.name');
await testSubjects.existOrFail('header-page-title');
await (await testSubjects.find('navigation-events')).click();
await testSubjects.click('navigation-events');
await testSubjects.existOrFail('events-viewer-panel');
await testSubjects.exists('investigate-in-resolver-button', { timeout: 4000 });
await (await testSubjects.findAll('investigate-in-resolver-button'))[0].click();
Expand Down