Skip to content

Commit 922564b

Browse files
feat: get-component-instance
1 parent 5f1575b commit 922564b

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.prettierrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2+
"printWidth": 120,
23
"singleQuote": true
34
}

libs/ngx-page-object-model/src/lib/page-object-model.ts

+13-2
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,18 @@ export abstract class PageObjectModel<ComponentType> {
6666
/**
6767
* Given a CSS selector, returns an array of all matching DebugHtmlElement items.
6868
*/
69-
getAllDebugElementsByCss<HTMLElementType extends HTMLElement = HTMLElement>(cssSelector: string): DebugHtmlElement<HTMLElementType>[] {
69+
getAllDebugElementsByCss<HTMLElementType extends HTMLElement = HTMLElement>(
70+
cssSelector: string,
71+
): DebugHtmlElement<HTMLElementType>[] {
7072
return this.fixture.debugElement.queryAll(By.css(cssSelector));
7173
}
7274

7375
/**
7476
* Given a data-testid, returns an array of all matching DebugHtmlElement items.
7577
*/
76-
getAllDebugElementsByTestId<HTMLElementType extends HTMLElement = HTMLElement>(testId: string): DebugHtmlElement<HTMLElementType>[] {
78+
getAllDebugElementsByTestId<HTMLElementType extends HTMLElement = HTMLElement>(
79+
testId: string,
80+
): DebugHtmlElement<HTMLElementType>[] {
7781
return this.getAllDebugElementsByCss(this.getSelectorByTestId(testId));
7882
}
7983

@@ -86,6 +90,13 @@ export abstract class PageObjectModel<ComponentType> {
8690
return this.fixture.debugElement.queryAll(By.directive(directive));
8791
}
8892

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+
89100
/**
90101
* Given an array of data-testid, returns the matching nested DebugHtmlElement item.
91102
*/

0 commit comments

Comments
 (0)