0

Vaadin中,是否可以模拟单击位于Table内的按钮?

例如:

table.getCellContent(tableRowId, columnRowId).clickButton()

我问的原因是因为我需要这个来进行测试。

4

1 回答 1

1

以下适用于 Vaadin 6.8.0 及更高版本:

((Button) table.getContainerProperty(tableRowId, columnRowId).getValue()).click();
于 2012-09-10T13:19:02.033 回答