I'm migrating some code from FEST Swing 1.2.1 to AssertJ Swing 3.2. In the old code there are calls to
JInternalFrameFixture.comboBox()
JInternalFrameFixture.label()
JInternalFrameFixture.slider()
Unfortunately I do not see any matching method in JInternalFrameFixture
of AssertJ Swing.
What should I use instead of the methods above in AssertJ Swing 3.2?
I've found that ComponentContainerFixture
has a comboBox()
method but JInternalFrameFixture
does not implement this one in AssertJ Swing.