Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在Vaadin中,是否可以模拟单击位于Table内的按钮?
例如:
table.getCellContent(tableRowId, columnRowId).clickButton()
我问的原因是因为我需要这个来进行测试。
以下适用于 Vaadin 6.8.0 及更高版本:
((Button) table.getContainerProperty(tableRowId, columnRowId).getValue()).click();