diff --git a/x-pack/test/security_solution_endpoint/apps/endpoint/policy_details.ts b/x-pack/test/security_solution_endpoint/apps/endpoint/policy_details.ts index 4c40cb005e8c4..fc814d7d2b060 100644 --- a/x-pack/test/security_solution_endpoint/apps/endpoint/policy_details.ts +++ b/x-pack/test/security_solution_endpoint/apps/endpoint/policy_details.ts @@ -21,8 +21,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { const testSubjects = getService('testSubjects'); const policyTestResources = getService('policyTestResources'); - // Failing: See https://github.com/elastic/kibana/issues/100236 - describe.skip('When on the Endpoint Policy Details Page', function () { + describe('When on the Endpoint Policy Details Page', function () { describe('with an invalid policy id', () => { it('should display an error', async () => { await pageObjects.policy.navigateToPolicyDetails('invalid-id'); @@ -637,6 +636,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { policyInfo.agentPolicy.id, policyInfo.packagePolicy.id ); + await testSubjects.existOrFail('endpointIntegrationPolicyForm'); }); afterEach(async () => { if (policyInfo) { diff --git a/x-pack/test/security_solution_endpoint/page_objects/ingest_manager_create_package_policy_page.ts b/x-pack/test/security_solution_endpoint/page_objects/ingest_manager_create_package_policy_page.ts index efca235fb44b5..913d1e18d1dc7 100644 --- a/x-pack/test/security_solution_endpoint/page_objects/ingest_manager_create_package_policy_page.ts +++ b/x-pack/test/security_solution_endpoint/page_objects/ingest_manager_create_package_policy_page.ts @@ -89,7 +89,11 @@ export function IngestManagerCreatePackagePolicy({ async setPackagePolicyDescription(desc: string) { await this.scrollToCenterOfWindow('packagePolicyDescriptionInput'); - await testSubjects.setValue('packagePolicyDescriptionInput', desc); + const packagePolicyDescriptionInput = await testSubjects.find( + 'packagePolicyDescriptionInput' + ); + await packagePolicyDescriptionInput.clearValueWithKeyboard(); + await packagePolicyDescriptionInput.type(desc); }, /**