Hi all,
reading release notes of 3.9.0 it should be possible to click on the column header of a table. I am able to click on every row, but if I specify a row index of 0 windowtester will click on the middle of the table.
Here's my code snippet:
final ViewLocator accountView = new ViewLocator("de.patronas.opus.client.rcp.core.account.view.accountsView");
final SWTWidgetLocator accountTable = new SWTWidgetLocator(Table.class, accountView);
ui.click(new TableCellLocator(0, 1).in(accountTable));
Any suggestions?
Thanks 'n greets
Balle