*/
public class WindowFinder_findFrame_byType_Test extends WindowFinder_TestCase {
@Test
public void should_find_Frame() {
clickLaunchFrameButton();
FrameFixture found = WindowFinder.findFrame(WindowToLaunch.class).using(robot);
assertThat(found.target()).isInstanceOf(WindowToLaunch.class);
}