在AssertJ-Swig中,可以使用以下方式模拟用户界面
frame.button("connect").click();
或
dialog.textBox("username").enterText("asdf");
但这利用了java.awt.Robot,它覆盖了鼠标和键盘。
我设法为通过How to mouse click on any java component without actual mouse being overridden继承java.awt.Component的那些组件模拟了鼠标
有什么方法可以使用AssertJ而不会覆盖鼠标/键盘吗?
谢谢!