File tree 2 files changed +14
-2
lines changed
libs/ngx-page-object-model/src/lib
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
+ "printWidth": 120,
2
3
"singleQuote": true
3
4
}
Original file line number Diff line number Diff line change @@ -66,14 +66,18 @@ export abstract class PageObjectModel<ComponentType> {
66
66
/**
67
67
* Given a CSS selector, returns an array of all matching DebugHtmlElement items.
68
68
*/
69
- getAllDebugElementsByCss < HTMLElementType extends HTMLElement = HTMLElement > ( cssSelector : string ) : DebugHtmlElement < HTMLElementType > [ ] {
69
+ getAllDebugElementsByCss < HTMLElementType extends HTMLElement = HTMLElement > (
70
+ cssSelector : string ,
71
+ ) : DebugHtmlElement < HTMLElementType > [ ] {
70
72
return this . fixture . debugElement . queryAll ( By . css ( cssSelector ) ) ;
71
73
}
72
74
73
75
/**
74
76
* Given a data-testid, returns an array of all matching DebugHtmlElement items.
75
77
*/
76
- getAllDebugElementsByTestId < HTMLElementType extends HTMLElement = HTMLElement > ( testId : string ) : DebugHtmlElement < HTMLElementType > [ ] {
78
+ getAllDebugElementsByTestId < HTMLElementType extends HTMLElement = HTMLElement > (
79
+ testId : string ,
80
+ ) : DebugHtmlElement < HTMLElementType > [ ] {
77
81
return this . getAllDebugElementsByCss ( this . getSelectorByTestId ( testId ) ) ;
78
82
}
79
83
@@ -86,6 +90,13 @@ export abstract class PageObjectModel<ComponentType> {
86
90
return this . fixture . debugElement . queryAll ( By . directive ( directive ) ) ;
87
91
}
88
92
93
+ /**
94
+ * Given a component type, returns the component instance.
95
+ */
96
+ getComponentInstance < T > ( componentType : Type < T > , assert = true ) : T {
97
+ return this . getDebugElementByDirective ( componentType , assert ) . componentInstance as T ;
98
+ }
99
+
89
100
/**
90
101
* Given an array of data-testid, returns the matching nested DebugHtmlElement item.
91
102
*/
You can’t perform that action at this time.
0 commit comments