You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'5stTabHeaderText': {element: (): ElementFinder=>getTabHeaderAccordionPage(5),actualResult: 'I can have markup, too!'},
24
25
'5stTabContentText': {element: (): ElementFinder=>getTabContentAccordionPage(5),actualResult: 'This is just some content to illustrate fancy headings.'}
25
26
};
27
+
28
+
publicstaticalertTableContains:any={
29
+
'Alert Danger text': {element: (): ElementFinder=>$('[ng-reflect-type="danger"]>div'),actualResult: 'Oh snap! Change a few things up and try submitting again.'},
30
+
'Alert Success text': {element: (): ElementFinder=>$('[ng-reflect-type="success"]>div:not(span):not(.close)'),actualResult: 'Well done! You successfully read this important alert message.'},
31
+
'Alert Dismissible text': {element: (): ElementFinder=>$('[dismissontimeout="3000"]'),actualResult: 'This alert will dismiss in 3s'},
32
+
'Alert Another text': {element: (): ElementFinder=>$('[ng-reflect-type="warning"]:nth-child(2n)'),actualResult: 'Another alert!'}
33
+
};
34
+
publicstaticmodalsTableContains:any={
35
+
'Modal Large button text': {element: (): ElementFinder=>$('.btn:nth-child(1)'),actualResult: 'Large modal'},
36
+
'Modal Small button text': {element: (): ElementFinder=>$('.btn:nth-child(3)'),actualResult: 'Small modal'},
0 commit comments