forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase_details.ts
42 lines (26 loc) · 1.63 KB
/
case_details.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
export const CASE_ACTIONS_BTN = '[data-test-subj="property-actions-ellipses"]';
export const CASE_DETAILS_DESCRIPTION =
'[data-test-subj="description-action"] [data-test-subj="user-action-markdown"]';
export const CASE_DETAILS_PAGE_TITLE = '[data-test-subj="header-page-title"]';
export const CASE_DETAILS_PUSH_TO_EXTERNAL_SERVICE_BTN =
'[data-test-subj="push-to-external-service"]';
export const CASE_DETAILS_STATUS = '[data-test-subj="case-view-status"]';
export const CASE_DETAILS_TAGS = '[data-test-subj="case-tags"]';
export const CASE_DETAILS_TIMELINE_LINK_MARKDOWN =
'[data-test-subj="description-action"] [data-test-subj="user-action-markdown"] button';
export const CASE_DETAILS_USER_ACTION_DESCRIPTION_EVENT =
'[data-test-subj="description-action"] .euiCommentEvent__headerEvent';
export const CASE_DETAILS_USER_ACTION_DESCRIPTION_USERNAME =
'[data-test-subj="description-action"] .euiCommentEvent__headerUsername';
export const CASE_DETAILS_USERNAMES = '[data-test-subj="case-view-username"]';
export const CONNECTOR_CARD_DETAILS = '[data-test-subj="settings-connector-card"]';
export const CONNECTOR_TITLE = '[data-test-subj="settings-connector-card"] span.euiTitle';
export const DELETE_CASE_BTN = '[data-test-subj="property-actions-trash"]';
export const DELETE_CASE_CONFIRMATION_BTN = '[data-test-subj="confirmModalConfirmButton"]';
export const PARTICIPANTS = 1;
export const REPORTER = 0;