Closed GoogleCodeExporter closed 9 years ago
Many thanks Csabi!!!
-Alex
Original comment by Alex.Rui...@gmail.com
on 26 Aug 2008 at 3:29
Hi Alex,
It seems that #showPopupMenuAt works if I call JTreeFixture#selectPath just
before
and with the same argument.
It seems to me that a call to JTreeDriver#makeVisible(JTree, TreePath, boolean)
just
before the call to Robot#showPopupMenu in the JTreeFixture#showPopupMenuAt
methods
would fix the issue.
I hope this helps, thanks,
Csabi
Original comment by csaba.ju...@gmail.com
on 16 Sep 2008 at 12:33
Hi again,
In the meantime I will add collapseAll and expandAll to JTreeFixture to avoid
calling
#selectPath all the time. I think that they would be a useful addition to
JTreeFixture.
And I don't want to just call JTree#expandPath because I would be accessing the
tree
outside of the EDT. See issue 204.
Thanks,
Csabi
P.S. I apologize for spamming you all of a sudden with all these reports. :)
Original comment by csaba.ju...@gmail.com
on 16 Sep 2008 at 1:52
Method 'showPopupMenuAt(String)' in org.fest.swing.fixture.JTreeFixture now
makes the
last node in the given path visible before showing a JPopupMenu.
Original comment by Alex.Rui...@gmail.com
on 14 Oct 2008 at 2:56
Thanks Alex,
Csabi
Original comment by csaba.ju...@gmail.com
on 14 Oct 2008 at 9:47
Set the module as a label, instead of being part of the title.
Original comment by Alex.Rui...@gmail.com
on 1 Dec 2008 at 3:17
Can someone plz provide an example of how to expand tree?
It would be very cool ! I am stuck for days now ... :)
Cheers !
Original comment by krikk...@hotmail.com
on 16 Nov 2012 at 5:24
Please help me to fixed this:
My problem I want want to rightclick on given tree path and delete that particular node of tree(once we rightclick it shows contents menu then click on delete option and then it shows popup "are you sure to delete" with yes no button)
here I have written code for it::
protected void workFlowVarification(String treeName){
sleep(1000);
JTreeFixture documentTree=frame.tree(treeName);
documentTree.expandPath("Workflow Processes/My Workflow Processes");
documentTree.selectPath("Workflow Processes/My Workflow Processes");
documentTree.expandPath("Workflow Processes/My Workflow Processes/GaneshWF")
documentTree.selectPath("Workflow Processes/My Workflow Processes/GaneshWF");
documentTree.rightClick().component().getSelectionRows();
}
AFTER executing this test it gives me error
org.fest.swing.exception.LocationUnavailableException:
Original comment by girikord...@gmail.com
on 27 Aug 2014 at 6:58
Original issue reported on code.google.com by
csaba.ju...@gmail.com
on 26 Aug 2008 at 9:14