我正在使用 Spectator 测试使用 ag-grid 的 Angular 应用程序。我正在尝试单击一个单元格,输入一些值并离开该单元格。(按回车键或单击页面上的其他位置)
spectator.click('.ag-center-cols-container .ag-row:first-child .ag-cell');
spectator.typeInElement(
'hello',
'.ag-center-cols-container .ag-row:first-child .ag-cell input'
);
spectator.click();
2第一行工作,我可以选择第一个单元格,然后我可以更改值。问题是第三行,我无法离开输入。
我也尝试了以下方法:spectator.keyboard.pressEnter();