This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 32310 - Call of method JTreeOperator.clickOnPath(...) closes wizard
Summary: Call of method JTreeOperator.clickOnPath(...) closes wizard
Status: CLOSED DUPLICATE of bug 30307
Alias: None
Product: qa
Classification: Unclassified
Component: Code (show other bugs)
Version: 3.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@qa
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-03-25 16:25 UTC by pfelenda
Modified: 2011-02-17 09:32 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description pfelenda 2003-03-25 16:25:35 UTC
IDE version dev 200303240100

If I run my test in IDE the wizard is closed without 
presing any button.
Method which close the dialog is from
org.netbeans.jemmy.operators package (jemmy.jar
2/19/2003).


This is fragment of my test :
==========================
MainWindowOperator mainWindowOp =
mainWindowOperator.getDefault();
       
mainWindowOp.getToolbarButton(mainWindowOp.getToolbar("System"),"New").push();
        
 WizardOperator wo = new WizardOperator("New");
 JTreeOperator tree = new JTreeOperator(wo);
 System.out.println(">> 1");
 tree.clickOnPath(tree.findPath("Other|Properties
File","|"));
 System.out.println(">> 2");
 wo.next();
==================================
Comment 1 Jiri Skrivanek 2003-03-26 08:57:32 UTC
It is known problem. Hopefully Shura will fix in the near future. As a
workaround, please, don't open new wizard from the IDE toolbar. Use
for example NewWizardOperator.invoke();.

*** This issue has been marked as a duplicate of 30307 ***
Comment 2 pfelenda 2003-04-23 13:14:13 UTC
Verified duplicate.