While writing UI unit tests with Java, i am looking for a way to expand (simulate a click) a grid-tree-toggle without using TestBench:
After click this should be expanded like:
I tried:
TreeGrid attributeSelectionGrid =
getComponentFromLayoutById(dialogContentVl, "attribut-auswahl-grid", TreeGrid.class);
attributeSelectionGrid.expand(test(attributeSelectionGrid).getRow(0))
, but it doesn’t works

