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();