Testing GridPro Values with UI Unit Tests

When writing UIUnit tests for a Vaadin GridPro, I’m trying to figure out how to set a field’s value within a specific row. For a standard component like a TextField, I would normally use .setValue(). What is the correct way to set a value (as clinent) for an editable cell within a GridPro row?

UI Unit Test seems not to have GridProTester yet. The question is hard as some editors do not have much presence on the server side, e.g. if you use .text(…) instead of .custom with TextField. And naturally both cases should be covered and they function quite differently. So at the moment there is possibly better success to cover these cases with Browser based E2E tests.

You may want to look into Karibu Testing, which is kind of the inspiration for UIUnit Testing: