Skip to content

Commit e602ee6

Browse files
committed
chore(*): add missed functions
1 parent 668ad7e commit e602ee6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,18 @@ export class GridFunctions {
104104
return fix.debugElement.query(By.css(GRID_FOOTER_CLASS));
105105
}
106106

107+
public static getGridBody(fix): DebugElement {
108+
return fix.debugElement.query(By.css(GRID_BODY_CLASS));
109+
}
110+
111+
public static getGridContent(fix): DebugElement {
112+
return fix.debugElement.query(By.css(GRID_CONTENT_CLASS));
113+
}
114+
115+
public static getGridHeader(fix): DebugElement {
116+
return fix.debugElement.query(By.css(GRID_HEADER_CLASS));
117+
}
118+
107119
public static getGridScroll(fix): DebugElement {
108120
return fix.debugElement.query(By.css(GRID_SCROLL_CLASS));
109121
}

0 commit comments

Comments
 (0)