public ForEach setCounterValue(String startExpression, String finalExpression) {
   BPELPropertiesView properties = new BPELPropertiesView();
   properties.selectTab("Counter Values");
   Bot.get().styledText(0).setText(startExpression);
   Bot.get().styledText(1).setText(finalExpression);
   bpelEditor.save();
   return this;
 }
 public Pick checkCreateInstance() {
   BPELPropertiesView properties = new BPELPropertiesView();
   properties.toggleCreateInstance(true);
   bpelEditor.save();
   return this;
 }