[DOCS] Automate screenshot for case connectors (#149178)

This commit is contained in:
Lisa Cawley 2023-01-19 12:55:41 -08:00 committed by GitHub
parent 09c9b480c3
commit 7e4f21c73f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 30 additions and 1 deletions

View file

@ -26,8 +26,11 @@ as described in <<action-types>>. Alternatively, you can create them in
. Click *Edit external connection*.
+
--
[role="screenshot"]
image::images/cases-connectors.png[]
// NOTE: This is an autogenerated screenshot. Do not edit it directly.
--
. From the *Incident management system* list, select *Add new connector*.

View file

@ -10,6 +10,7 @@ management systems by configuring connectors.
[role="screenshot"]
image::images/cases.png[Cases page]
// NOTE: This is an autogenerated screenshot. Do not edit it directly.
NOTE: If you create cases in the {observability} or {security-app}, they are not
visible in *{stack-manage-app}*. Likewise, the cases you create in

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 KiB

After

Width:  |  Height:  |  Size: 164 KiB

Before After
Before After

View file

@ -32,6 +32,7 @@ example, you can portray event and alert data through charts and graphs.
[role="screenshot"]
image::images/cases-visualization.png[Cases page]
// NOTE: This is an autogenerated screenshot. Do not edit it directly.
To add a visualization to a comment within your case:

View file

@ -14,7 +14,7 @@ export default function ({ getService }: FtrProviderContext) {
const screenshotDirectories = ['response_ops_docs', 'stack_cases'];
let CASE_ID: string;
describe('deatils view', function () {
describe('details view', function () {
before(async () => {
const { id: caseId } = await cases.api.createCase({
title: 'Web transactions',

View file

@ -0,0 +1,23 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { FtrProviderContext } from '../../../ftr_provider_context';
export default function ({ getService }: FtrProviderContext) {
const cases = getService('cases');
const commonScreenshots = getService('commonScreenshots');
const screenshotDirectories = ['response_ops_docs', 'stack_cases'];
describe('edit external connections', function () {
it('cases configure screenshot', async () => {
await cases.navigation.navigateToApp();
await cases.navigation.navigateToConfigurationPage();
await commonScreenshots.takeScreenshot('cases-connectors', screenshotDirectories, 1400, 1024);
});
});
}

View file

@ -11,5 +11,6 @@ export default function ({ loadTestFile }: FtrProviderContext) {
describe('stack cases', function () {
loadTestFile(require.resolve('./list_view'));
loadTestFile(require.resolve('./details_view'));
loadTestFile(require.resolve('./external_connections'));
});
}