Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bonita
bonita-studio
Commits
4d2e3a67
Commit
4d2e3a67
authored
Jul 15, 2014
by
Aurelien Pupier
Browse files
BS-6749: add more logs
parent
0c3d4672
Changes
1
Show whitespace changes
Inline
Side-by-side
tests/org.bonitasoft.studio.util.tests/src/org/bonitasoft/studio/util/test/conditions/SelectNodeUnder.java
View file @
4d2e3a67
...
...
@@ -33,7 +33,9 @@ public class SelectNodeUnder implements ICondition {
public
boolean
test
()
throws
Exception
{
System
.
out
.
println
(
"SelectNodeUnder.test"
+
parentNode
+
" --> "
+
subNodeLabel
);
bot
.
tree
().
unselect
();
bot
.
tree
().
select
(
parentNode
).
expandNode
(
parentNode
).
select
(
subNodeLabel
);
final
SWTBotTreeItem
expandedNode
=
bot
.
tree
().
select
(
parentNode
).
expandNode
(
parentNode
);
System
.
out
.
println
(
"Available nodes under expanded one"
+
parentNode
+
": "
+
expandedNode
.
getNodes
());
expandedNode
.
select
(
subNodeLabel
);
return
bot
.
tree
().
selectionCount
()
>
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment