Skip to content

Commit c522f1a

Browse files
authored
Merge pull request #6988 from IgniteUI/hPopov/refactor-grid-paging-tests-master
Refactoring IgxGrid Paging tests (master)
2 parents 329bc77 + f23c051 commit c522f1a

File tree

4 files changed

+376
-444
lines changed

4 files changed

+376
-444
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-row-editing.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ describe('IgxGrid - Row Editing #grid', () => {
11361136
tick(16);
11371137

11381138
const cell = grid.getCellByColumn(0, 'ProductName');
1139-
const select = fix.debugElement.query(By.css('igx-select')).nativeElement;
1139+
const select = GridFunctions.getGridPageSelectElement(fix);
11401140

11411141
cell.setEditMode(true);
11421142
// cell.update('IG');
@@ -1168,7 +1168,7 @@ describe('IgxGrid - Row Editing #grid', () => {
11681168

11691169
const gridElement: HTMLElement = grid.nativeElement;
11701170
let cell = grid.getCellByColumn(3, 'ProductName');
1171-
const select = fix.debugElement.query(By.css('igx-select')).nativeElement;
1171+
const select = GridFunctions.getGridPageSelectElement(fix);
11721172

11731173
cell.setEditMode(true);
11741174
tick(16);

0 commit comments

Comments
 (0)