You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to do a simple test filling a text cell with React Testing Library but actions doesn't seem to affect the table.
consttextCell=screen.getByText('Text Cell Placeholder');awaituser.dblClick(textCell);constrgCellEditor=awaitscreen.findAllByRole('textbox')[0];//at this point, the input that edit the texcells on table should be appear but it doesn'tawaituser.type(rgCellEditor,'123');awaituser.keyboard('{Enter}');
disableVirtualScrolling = true
This should be enough to fill the text cell but it doesn't work.
Also, I did an E2E test with Playwright with the same instructions and it works.
The text was updated successfully, but these errors were encountered:
I'm trying to do a simple test filling a text cell with React Testing Library but actions doesn't seem to affect the table.
disableVirtualScrolling = true
This should be enough to fill the text cell but it doesn't work.
Also, I did an E2E test with Playwright with the same instructions and it works.
The text was updated successfully, but these errors were encountered: