-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventCard3.py
55 lines (43 loc) · 1.18 KB
/
EventCard3.py
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
43
44
45
46
47
48
49
50
51
52
53
54
55
from MyCard import MyCard
eventCard3 = MyCard()
eventCard3.add_text_block(
text="Webex Metrics Bot", size="Large"
)
eventCard3.add_text_block(
text="Please Enter the required Data", weight="Bolder", size="Medium"
)
eventCard3.add_text_block(
text="Enter the First Error Name"
)
eventCard3.add_input_text(
input_id="error_name1",
input_placeholder="eg: client_ecm_add_account_funnel",
input_value="client_ecm_add_account_funnel"
)
eventCard3.add_text_block(
text="Enter the Second Error Name"
)
eventCard3.add_input_text(
input_id="error_name2",
input_placeholder="eg: client_ecm_add_account_funnel",
input_value="client_ecm_add_account_funnel"
)
eventCard3.add_text_block(
text="Enter the Third Error Name"
)
eventCard3.add_input_text(
input_id="error_name3",
input_placeholder="eg: client_ecm_add_account_funnel",
input_value="client_ecm_add_account_funnel"
)
eventCard3.add_text_block(
text="Enter the regularity with which you want Updates"
)
eventCard3.add_input_text(
input_id="regularity",
input_placeholder="eg: Daily/Weekly/Monthly",
input_value="weekly"
)
eventCard3.add_submit_action_btn(
title="Create request"
)