aboutsummaryrefslogtreecommitdiffstats
path: root/services/constants.py
blob: b97ff6b2530f5c3b26c957c23426d849284aa356 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
# ============LICENSE_START==========================================
# org.onap.vvp/test-engine
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
# ===================================================================
#
# Unless otherwise specified, all software contained herein is licensed
# under the Apache License, Version 2.0 (the “License”);
# you may not use this software except in compliance with the License.
# You may obtain a copy of the License at
#
#             http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
#
# Unless otherwise specified, all documentation contained herein is licensed
# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
# you may not use this documentation except in compliance with the License.
# You may obtain a copy of the License at
#
#             https://creativecommons.org/licenses/by/4.0/
#
# Unless required by applicable law or agreed to in writing, documentation
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ============LICENSE_END============================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
from django.conf import settings


class ServiceProvider:
    PROGRAM_NAME = settings.PROGRAM_NAME
    MainServiceProvider = settings.SERVICE_PROVIDER
    email = settings.SERVICE_PROVIDER_DOMAIN


class Constants:

    class FEGeneral:

        class CSS:
            H2 = 'h2'

    class Paths:

        class SSH:
            PATH = "/root/.ssh/"

        class LocalGitFolder:
            PATH = "/tmp/git_work/"

    class DBConstants:
        RETRIES_NUMBER = 120

        class Engagement:

            AIC = 'aic_instantiation_time'

        class Queries:
            COUNT = "COUNT(*)"

        class IceTables:
            NOTIFICATION = "ice_notification"
            USER_PROFILE = "ice_user_profile"
            ENGAGEMENT = "ice_engagement"
            CHECKLIST = "ice_checklist"
            RECENT = "ice_recent_engagement"
            NEXT_STEP = "ice_next_step"

    class ChecklistStates:

        class Pending:
            TEXT = "pending"

        class Automation:
            TEXT = "automation"

        class Review:
            TEXT = "review"

        class PeerReview:
            TEXT = "peer_review"

        class Approval:
            TEXT = "approval"

        class Handoff:
            TEXT = "handoff"

        class Archive:
            TEXT = "archive"

        class Closed:
            TEXT = "closed"

    class FEConstants:
        RETRIES_NUMBER = 120

    class GitLabConstants:
        RETRIES_NUMBER = 60

    class RGWAConstants:
        RETRIES_NUMBER = 100
        BUCKET_RETRIES_NUMBER = 180

    class ChecklistSignalsConstants:
        RETRIES_NUMBER = 10

    class Users:

        class Admin:
            EMAIL = "admin@" + ServiceProvider.email
            FULLNAME = "admin bogus user"

        class AdminRO:
            EMAIL = "admin_ro@" + ServiceProvider.email

        class LongEmailLengthStandardUser:
            EMAIL = "50charslengthemailofstandardus@" + \
                ServiceProvider.email

    class Toast:
        ID = "toast-successfully-message"
        CMS_ID = "announcement-successfully-message"
        CSS = "html.ng-scope"
        TEXT = "Important announcement: "

    class Cms:
        Toast_title_id = "toast-title-id"
        Toast_description = "toast-description"
        Test_addDT_close_modal_button = "close-modal-button"
        Documentation = "documentation"
        Tooltip_title = "tooltip-title"
        Tooltip_description = "tooltip-description"
        SearchDocumentation = "search-doc"
        DocumentationPageContent = ".page-content > p"

    class Template:

        class Heat:
            TEXT = "Heat Templates"

        class Subtitle:

            class SelectTemplateTitle:
                TEXT = "please-select"

    class SubmitButton:
        CSS = "button.btn.btn-primary"
        ID = "submit-modal"

    class Home:

        class Logo:
            ID = "logo"

        class Title:
            ID = "home-heading"
            TEXT = "Welcome to " + ServiceProvider.PROGRAM_NAME

        class GetStarted:
            LINK_TEXT = "Get Started"
            TEXT = "Get Started"

        class Collaborate:
            ID = "collaborate"
            XPATH = "//div[3]/div/h3"
            TEXT = "Collaborate"

        class Validate:
            XPATH = "//div[2]/div/h3"  # FIXME: change xpath
            TEXT = "Validate"

        class Incubate:
            # FIXME: change xpath
            XPATH = "//section[@id='boxes']/div/div/div/h3"
            TEXT = "Incubate"

    class Login:

        class Signup:
            LINK_TEXT = "Sign Up"

        class Title:
            CSS = "h1.ng-binding"
            TEXT = "Login"

        class SubTitle:
            CSS = "h2.ng-binding"
            TEXT = "Please use the form below to login"

        class Email:
            NAME = "email"

        class Password:
            NAME = "password"

            class Error:
                CSS = "div.form-group.has-error > div.ice-form-error > span"
                TEXT = "Password is a required field."

        class ResetPassword:
            LINK_TEXT = "Reset your password?"
            TEXT = "Reset your password?"

        class DontHaveAccount:
            ID = "id-dont-have-an-account"
            TEXT = "Don't have an account?"

        class Toast:
            TEXT = "User or Password does not match"

    class Signup:

        class Title:
            CSS = "h1.ng-binding"
            TEXT = "Sign Up"

        class SubTitle:
            CSS = "h2.ng-binding"
            TEXT = "Please use the form to Sign Up to " + \
                ServiceProvider.PROGRAM_NAME

        class Company:
            NAME = "company"

        class FullName:
            NAME = "fullname"

        class Email:
            NAME = "email"

        class Phone:
            NAME = "phone"

        class Password:
            NAME = "password"

        class RegularEmail:
            XPATH = "//input[@type='checkbox']"  # FIXME: Change XPath

        class AcceptTerms:
            XPATH = "(//input[@type='checkbox'])[2]"  # FIXME: Change XPath

        class Toast:

            class Captcha:
                TEXT = "Please fill CAPTCHA!"

            class NotMainVendor:
                TEXT = "Email address should be with service provider " +\
                    "domain for signees that their company =" \
                       + ServiceProvider.MainServiceProvider

        class HaveAccount:
            LINK_TEXT = "Already have an account?"
            TEXT = "Already have an account?"

    class ActivateAccount:

        class Title:
            CSS = "h1.ng-binding"
            TEXT = "Activate Your Account"

        class SubTitle:
            CSS = "h2.ng-binding"
            TEXT = "Please follow the instructions below to " +\
                "activate your account."

        class Toast:
            TEXT = "Please activate your account first"

    class ResetPassword:

        class Toast:

            class Success:
                TEXT = "An email with detailed instructions on how " +\
                    "to reset your password was sent to your Email."

        class Title:
            CSS = "h1.ng-binding"
            TEXT = "Reset Your Password"

        class SubTitle:
            CSS = "h2.ng-binding"
            TEXT = "Please follow the instructions below to reset " +\
                "your password"

        class Button:
            TEXT = "Send Instructions"

        class Email:
            NAME = "email"

    class UpdatePassword:

        class Title:
            CSS = "h1.ng-binding"
            TEXT = "Update Your Password"

        class SubTitle:
            CSS = "h2.ng-binding"
            TEXT = "Please follow the instructions below to" +\
                " update your password"

        class Password:
            NAME = "password"

        class ConfirmPassword:
            NAME = "confirm_password"

        class Button:
            TEXT = "Update Password"

        class Toast:
            TEXT = "Password was updated Successfully!"

    class Dashboard:

        class Modal:
            TITLE_ID = "modal-title"
            CLOSE_BUTTON_ID = "close-modal-button"

        class Default:
            DASHBOARD_ID = "dashboard"
            STATISTICS = "statistics"

        class Checklist:

            TITLE = "Checklist:"

            class ChecklistDefaultNames:
                HEAT_TEMPLATES = "Heat Templates"
                IMAGE_VALIDATION = "Image Validation"
                AIC_INSTANTIATION = "AIC Instantiation"
                ASDC_ONBOARDING = "ASDC Onboarding"

            class Name:
                ID = "cl-name-id"

            class AuditLog:
                ID = "audit-log"

                class LastLocalAuditLog:
                    CSS = "#audit-log-list > li:last-child p"

                class AuditLogList:
                    ID = "audit-log-list"

            class JenkinsLog:

                ID = "jenkins-log"

                class Modal:

                    class Title:
                        ID = "general-log-modal-title-id"
                        TEXT = "Jenkins log"

                    class Body:
                        ID = 'general-log-modal-body-id'
                        TEXT_SAMPLE = 'Started by user admin'
                        BUILD_IDENTIFIER = '/bin/sh /tmp/'

            class LineItem:

                class Approve:
                    CSS = "li.approved-cl-btn"

                class Deny:
                    CSS = "li.denied-cl-btn"

            class Approve:
                pass

            class Reject:
                ID = "state-actions-btn-reject"

                class Modal:

                    class Button:
                        ID = "reject-state"
                        TEXT = "Reject"

                    class Comment:
                        NAME = "entry_comment"

            class AddNS:
                TITLE = "Add Next Steps"
                ID = "state-actions-btn-add-next-steps"
                CSS = "span.font_header"

        class GeneralPrompt:

            class UpperTitle:
                ID = "general-prompt-upper-headline"

            class Title:
                ID = "general-prompt-title"

            class ApproveButton:
                ID = "general-prompt-approve-btn"

            class CancelButton:
                ID = "general-prompt-cancel-btn"

        class Wizard:

            class Open:
                CSS = "div[modal-animation='true']"
                CLASS_NAME = "getting-started-wizard"

            class Title:
                CSS = "h2.modal-title.ng-binding"

            class CloseButton:
                ID = "close-wizard-button"

            class AddVF:

                class Title:
                    TEXT = "Add a VF"

                class AIC_Version:
                    TEXT = "aic-version"

                class ECOMP_Release:
                    TEXT = "ecomp-release"

            class AddVendorContact:

                class Title:
                    TEXT = "Add Vendor Contact"

            class InviteTeamMembers:

                class Title:
                    NAME = "Invite Team Members"
                    TEXT = "Invite Team Members"

                class Button:
                    TEXT = "Send invitations"

            class AddSSHKey:

                class Title:
                    NAME = "Add SSH Key"
                    TEXT = "Add SSH Key"

                class TextBox:
                    NAME = "key"

        class ActivateMsg:

            class Success:
                TEXT = "You have successfully activated your account!"

            class Fail:
                TEXT = "Please activate your account first"

        class Avatar:
            ID = "avatar"

            class Account:
                LINK_TEXT = "Account"

                class Title:
                    CSS = "h2.ng-scope"
                    TEXT = "Account"

                class FullName:
                    NAME = "fullname"

                class Email:
                    NAME = "email"

                class Phone:
                    NAME = "phone"

                class Company:
                    NAME = "company"

                class SSHKey:
                    NAME = "ssh_key"

                    class UpdateFailed:
                        TEXT = "Updating SSH Key failed due to invalid key."

                class Update:

                    class Success:
                        TEXT = "Account was updated successfully!"

                class RGWA:

                    class Key:
                        TITLE_ID = "access-key-title"
                        KEY_ID = "access-key-value"

                    class Secret:
                        TITLE_ID = "access-secret-title"
                        SECRET_ID = "access-secret-value"
                        BUTTON_ID = "show-access-secret"
                        SECRET_TEXT = "•••••••••••••••"

                class UserProfileSettings:
                    ID = 'user-profile-settings'
                    TitleID = 'user-profile-settings-title'
                    TitleText = 'Settings'
                    ReceiveEmailsID = 'receive-emails'
                    ReceiveNotificationsID = 'receive-notifications'
                    ReceiveEmailEveryTimeID = 'receive-emails-every-time'
                    ReceiveDigestEmailID = 'receive-digest-emails'
                    UpdateButtonID = 'update-account-user-profile-settings'

            class Notifications:
                LINK_TEXT = "Notifications"

                class NotificationColumn:
                    ID = "table-col-"

                class DeleteNotification:
                    ID = "del-notification-"

                class Count:
                    ID = "notifications-count"
                    RETRIES_NUMBER = 20

                class Title:
                    ID = "notifications"
                    TEXT = "Notifications"

            class Admin:
                LINK_TEXT = "Admin"

                class Title:
                    CSS = "h1.caption"
                    TEXT = "Admin"
                    ID = "admin-toolbar-link"

            class Logout:
                LINK_TEXT = "Logout"

        class Feedback:
            ID = "feedback-toolbar-link"

            class FeedbackModal:
                SAVE_BTN_ID = "add-feedback-save-button"

        class Statuses:
            ID = "logo"

            class Body:
                ID = "search-results"
                TEXT = "Export to Excel >>"

            class Title:
                ID = "dashboard-title"
                TEXT = "Statuses"

            class FilterDropdown:
                ID = "search-filter-stage"

            class SearchBox:
                ID = "search-filter-keyword"

            class SearchFilters:
                ID = "search-filters"

            class AssignedNS:
                ID = "next-steps-header"

            class Statistics:

                class Title:
                    ID = "statistics-header"
                    TEXT = "Statistics"

                class FilterDropdown:
                    CSS = "#statistics-header > .search-filters" +\
                        " > .search-filter-stage"

                class ValidationsNumber:
                    ID = "id-validations-num"

                class EngagementsNumber:
                    ID = "id-engagements-num"

            class News:

                class Title:
                    ID = "news-and-announcements-header"
                    TEXT = "News & Announcements"

                class List:
                    ID = "news-and-announcements-list"
                    TEXT = "There are no posts."

            class ExportExcel:
                ID = "export-to-csv"
                TEXT = "Export to Excel >>"

        class Overview:

            class AdminDropdown:
                ID = "admin-actions-dropdown"

                class ArchiveEngagement:
                    LINK_TEXT = "Archive"

                    class Wizard:

                        class Title:
                            ID = "archive-engagement-title"
                            TEXT = "Archive Engagement"

                        class Reason:
                            NAME = "reason"

                class ChangeReviewer:
                    LINK_TEXT = "Change Reviewer"

                    class Wizard:

                        class Title:
                            ID = "archive-engagement-title"
                            TEXT = "Select Engagement Lead"

                        class Select:
                            NAME = "selected-user"

                    class Toast:
                        TEXT = "Reviewer updated successfully."

                class ChangePeerReviewer:
                    LINK_TEXT = "Change Peer Reviewer"

                    class Wizard:

                        class Title:
                            ID = "archive-engagement-title"
                            TEXT = "Select Engagement Lead"

                    class Toast:
                        TEXT = "Peer reviewer updated successfully."

                class UpdateStatus:
                    LINK_TEXT = "Update Status"
                    PROGRESS = "progress"
                    PROGRESS_CSS = 'input[name="progress"]'
                    TARGET = 'vm.engagement.target_completion_date'
                    HEAT = 'vm.engagement.heat_validated_time'
                    IMAGE_SACN = 'vm.engagement.image_scan_time'
                    AIC = 'vm.engagement.aic_instantiation_time'
                    ASDC = 'vm.engagement.asdc_onboarding_time'
                    STATUS = "status"
                    SUBMIT = 'button[type="submit"]'
                    SUCCESS_MSG = 'Engagement status updated successfully.'

            class BucketURL:
                ID = "bucket-url"
                TEXT = "STORAGE BUCKET: "

            class GitURL:
                ID = "git-url"

            class Title:
                ID = "engagement-title"

            class Star:
                ID = "star-engagement-action"

            class Stage:

                class Approve:
                    XPATH = "//button[@type='submit']"  # FIXME: Change XPath

                class Deny:
                    # FIXME: Change XPath
                    XPATH = "(//button[@type='submit'])[2]"

                class Set:
                    ID = "set-stage-"

            class Progress:

                class ValidationsDates:

                    AIC_ID = 'aic-instantiation-time'
                    HEAT_ID = 'heat-validated-time'
                    IMAGE_ID = 'image-scan-time'
                    ASDC_ID = 'asdc-onboarding-time'
                    VALIDATION_DATES_ARRAY = [
                        AIC_ID, HEAT_ID, IMAGE_ID, ASDC_ID]

                class VnfVersion:
                    CLASS = "vnf_version_value"

                class Percent:
                    ID = "progress-percentage"
                    TEXT = "0 %"

                class Change:
                    ID = "edit-change-progress"
                    NUMBER = "55"
                    TEXT = "55 %"

                class Wizard:
                    NAME = "progress"

                    class Title:
                        TEXT = "Specify Progress in %"

                    class Button:
                        TEXT = "Save"

            class Status:

                class Header:
                    ID = "#engagement-status-header > span"

                class Add:
                    CSS = "i.add-engagement-status"

                class Edit:
                    CSS = "i.edit-engagement-status"

                class Description:
                    ID = "status-description"

                class LastUpdated:
                    ID = "status-update-details"

            class TeamMember:
                ID = "team-members-plus-button-id"
                MEMBER_ID = "team-member-%s"

                class Title:
                    ID = "team-member-title"

                class RemoveUser:
                    ID = "remove-member"

                    class Title:
                        TEXT = "Remove user from engagement team: %s"

                    class Message:
                        TEXT = "Are you sure you would like to remove " +\
                            "the user out of the team members?"

            class NextSteps:

                class FilterByFileDropDown:
                    ID = "selected-file-filter-dropdown"
                    ANY_FILE_LINK_TEXT = "Any file"
                    FILE0_LINK_TEXT = "file0"
                    FILE1_LINK_TEXT = "file1"
                    FILE2_LINK_TEXT = "file2"

                class StateDropDown:
                    ID = "selected-state-filter-dropdown"
                    INCOMPLETE_LINK_TEXT = "Incomplete"
                    COMPLETED_LINK_TEXT = "Completed"

                class Add:
                    TITLE = "Engagement:"
                    ID = "add-next-step-button"

                    class Title:
                        CSS = "h2"
                        TEXT = "Add Next Steps"

                    class Description:
                        ID = "description"
                        STEP_DESC_ID = "step-description-"

                    class Button:
                        TEXT = "Submit Next Steps"

                    class AssociatedFiles:
                        ID = "associated-files-list"
                        ALL_FILES_SELECTED = "3 files selected"
                        SELECT_ALL_FILES_NAME = "Select All"

                class AssociatedFiles:
                    ID = "associated-files"
                    EmptyMsgID = "associated-files-empty-msg"
                    EmptyMsg = "There are no files for this next step"
                    FileId = "file0"

        class DetailedView:
            ID = "detailed-view-"

            class DeploymentTarget:
                ID = "deployment-targets"
                TEXT = "Deployment Targets"
                TITLE = "Add Deployment Target"
                SAVE = "add-dt-save-button"
                CSS = "span.col-md-10.ng-binding"
                ID_REMOVE_DTS = "remove-dts-"

                class AddDeploymentTargetButton:
                    ID = "add-dt"

            class VirtualFunctionComponents:
                ID = "virtual-function-components"
                TEXT = "Virtual Function Components"

            class ValidationDetails:
                PLUS = "update-validation-details"
                TITLE = "Validation Details (ECOMP, AIC, VF Version)"
                SAVE = "edit-validation-setails-save-button"
                ID = "vd-title"
                TEXT = "Validation Details"

                class TargetAICVersion:
                    ID = "target-aic-version-headline"
                    TEXT = "Target AIC Version:"
                    AIC3 = "AIC 3.0"

                class ECOMPRelease:
                    ID = "ecomp-release-headline"
                    TEXT = "ECOMP Release:"
                    ID_ECOMP = "ecomp-select-options-"
                    UNKNOW = "Unknown"

                class VFVersion:
                    ID = "vf-version-headline"
                    TEXT = "VF Version:"
                    ID_VERSION = "id-vf-version"
                    VF_VERSION_ID = "vf_version_"

            class TargetLabEntry:
                ID = "target-lab-entry"
                TEXT = "Target Lab Entry"
                CSS = "#target-lab-entry-header > span"
                CHANGE = "change-lab-entry-date"
                INPUT_CSS = '.md-datepicker-input'
                CONTENT_CSS = "h4.target-lab-entry-content"

                class Add:
                    ID = "add-dt"

            class VFC:
                TEXT = "Virtual Function Components"
                ID = "visible-dts-"

                class Add:
                    ID = "add-vfc"

                class Remove:
                    ID = "remove-vfc-"

                class Save_button:
                    ID = "add-vfc-save-button"

                class Choose_Company:
                    ID = "add-vfc-choose-company"

            class AIC:
                TEXT = "Target AIC Version"
                ID = "aic_version_"

                class Edit:
                    ID = "test_AIC_Version_Edit"

                class Confirm:
                    ID = "test_AIC_Version_Update"

                class Decline:
                    ID = "test_AIC_Version_Remove"

                class Dropdown:
                    ID = "aic-version-select"

                    class TwoPointFive:
                        ID = "aic_select_options_2.5"
                        TEXT = "2.5"

                    class Three:
                        ID = "aic_select_options_3.0"
                        TEXT = "3.0"

                    class ThreePointFive:
                        ID = "aic_select_options_3.5"
                        TEXT = "3.5"

                    class Four:
                        ID = "aic_select_options_4.0"
                        TEXT = "4.0"

                    class UniversalVersion:
                        ID = "aic_select_options_%s"

                    class NoVersion:
                        ID = "aic_select_options_No version number available"
                        TEXT = "No version number available"

            class ECOMP:
                ID = "ecomp_version_"

                class Edit:
                    ID = "test_ECOMP_Release_Edit"

                class Confirm:
                    ID = "test_ECOMP_Release_Update"

                class Decline:
                    ID = "test_ECOMP_Release_Remove"

                class Dropdown:
                    ID = "ecomp-release-select"

                    class Unknown:
                        ID = "ecomp-select-options-Unknown"

                    class UniversalRelease:
                        ID = "ecomp-select-options-%s"

        class LeftPanel:

            class Title:
                CSS = "h1.caption"
                TEXT = "Engagements"

            class AddEngagement:
                ID = "add-engagement"

            class SearchBox:
                ID = "search-eng"

                class Results:
                    ID = "search-%s"  # %s --> VF name
                    CSS = "span.search-engagement-name.ng-binding"
                    XPATH = "//input[@type='text']"

                class NoResults:
                    ID = "search-no-results"

            class CreateChecklist:
                ID = "btn-create-checklist"  # "btn-modal-update-checklist"

            class EditChecklistTemplate:
                SUCCESS_SAVE_MSG = "Template was saved successfully."
                SAVE_BTN = "Save"
                HEAT = "Editing Heat"
                SAVE_BTN_ID = "save-button"
                APPROVE_BTN_ID = "general-prompt-approve-btn"
                SUCCESS_ID = "toast-successfully-message"
                APPROVE_BTN_TITLE_ID = "general-prompt-title"
                APPROVE_BTN_TITLE_TEXT = "Are you done editing?"
                CL_TEMPLATE_SAVED_TXT = "Template was saved successfully."
                FIRST_SECTION_ID = "edit-section-btn-0"
                FIRST_SECTION_INPUT_ID = "edit-section-input-0"
                REJECT_BTN_ID = "state-actions-btn-reject"
                ADD_LINE_ITEM_BTN = "add-lineitem-btn"
                EDIT_LINE_ITEM_BTN = "edit-lineitem-btn"
                EDIT_LINE_ITEM_NAME = "edit-line-item-name-input"
                LINE_ITEM_DESC_TEXT_BOX = "edit-lineitem-description"
                EDIT_LINE_ITEM_DESC = "edit-lineitem-description-input"
                FIRST_LINE_ITEM_ID = "select-lineitem-btn-0.0"
                WYSIWYG_BUTTON_BOLD = "//button[@type='button']"
                DASHBOARD_ID = "dashboard"
                SEARCH_ENG_ID = "search-eng"
                DELETE_LINE_ITEM = "delete-lineitem-btn"

                class DefaultChecklistTemplateParametrs:
                    DEFAULT_FIRST_SECTION_VALUE = "External References"

    class EngagementStages:
        INTAKE = "Intake"
        ACTIVE = "Active"
        VALIDATED = "Validated"
        COMPLETED = "Completed"
        ALL = "All"

    class Default:

        class TestPrefix:
            Test = "test_"
            Center = "center-"

        class Password:
            TEXT = "iceusers"

            class NewPass:
                TEXT = "1234"

        class Phone:
            TEXT = "+972-50-555-5555"

        class LoginURL:
            TEXT = settings.ICE_PORTAL_URL + "/#/login"

        class DashbaordURL:
            TEXT = settings.ICE_PORTAL_URL + "/#/dashboard/dashboard"

        class OverviewURL:
            TEXT = settings.ICE_PORTAL_URL + "/#/dashboard/overview"

        class InviteURL:

            class Login:
                TEXT = settings.ICE_PORTAL_URL + "/#/login?invitation="

            class Signup:
                TEXT = settings.ICE_PORTAL_URL + "/#/signUp?eng_uuid="

        class URL:

            class Engagement:

                class EngagementOperations:
                    TEXT = settings.ICE_EM_URL + '/v1/engmgr/engagement/'

                class SingleEngagement:
                    TEXT = settings.ICE_EM_URL + \
                        '/v1/engmgr/single-engagement/'

            class Checklist:
                TEXT = settings.ICE_EM_URL + '/v1/engmgr/engagement/'

                class Get:
                    TEXT = settings.ICE_EM_URL + '/v1/engmgr/checklist/'

                class Create:
                    TEXT = settings.ICE_EM_URL + '/v1/engmgr/checklist/'

                class Update:
                    TEXT = settings.ICE_EM_URL + '/v1/engmgr/checklist/'

                class Rest:
                    TEXT = settings.EM_REST_URL + "checklist/"

            class GitLab:

                class Projects:
                    TEXT = settings.GITLAB_URL + "api/v3/projects/"

                class Users:
                    TEXT = settings.GITLAB_URL + "api/v3/users/"

        class BlockUI:
            CSS = "div.block-ui-message.ng-binding"