mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[DOCS] Automate screenshot for case connectors (#149178)
This commit is contained in:
parent
09c9b480c3
commit
7e4f21c73f
7 changed files with 30 additions and 1 deletions
|
@ -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*.
|
||||
|
||||
|
|
|
@ -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 |
|
@ -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:
|
||||
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
});
|
||||
}
|
|
@ -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'));
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue