// Check dialog box is displayed
JDialog wizardDialog = (JDialog)TestUtilities.findComponent(frame, JDialog.class);
assertTrue("Wizard view dialog not showing", wizardDialog.isShowing());
// Retrieve ImportedFurnitureWizardStepsPanel components
ImportedFurnitureWizardStepsPanel panel = (ImportedFurnitureWizardStepsPanel)TestUtilities.findComponent(
frame, ImportedFurnitureWizardStepsPanel.class);
final JButton modelChoiceOrChangeButton = (JButton)TestUtilities.getField(panel, "modelChoiceOrChangeButton");
final JButton turnLeftButton = (JButton)TestUtilities.getField(panel, "turnLeftButton");
final JButton turnDownButton = (JButton)TestUtilities.getField(panel, "turnDownButton");
JCheckBox backFaceShownCheckBox = (JCheckBox)TestUtilities.getField(panel, "backFaceShownCheckBox");