We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 668ad7e commit e602ee6Copy full SHA for e602ee6
projects/igniteui-angular/src/lib/test-utils/grid-functions.spec.ts
@@ -104,6 +104,18 @@ export class GridFunctions {
104
return fix.debugElement.query(By.css(GRID_FOOTER_CLASS));
105
}
106
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
119
public static getGridScroll(fix): DebugElement {
120
return fix.debugElement.query(By.css(GRID_SCROLL_CLASS));
121
0 commit comments