Angelo Pluskwa
Angelo Pluskwa
Hi Christian, I updated my pom to ``` org.assertj assertj-swing-junit 3.5.0 ``` and ran your test (I had to to clone your repository to have the RobotBasedTestCase available). But it...
``` public class FileChooserFrame extends JFrame { public FileChooserFrame() { setSize(200, 100); setTitle(getClass().getCanonicalName()); setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); setLayout(new FlowLayout()); JTextField textField = new JTextField(); textField.setPreferredSize(new Dimension(200, 20)); JButton button = new JButton("FileChooser"); JFrame...