protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.String, ParameterTypes.Node
     };
     OutputType = ParameterTypes.None;
 }
Example #2
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Node;
     ElemType   = typeof(ElemFindSingleNode);
 }
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Any;
     ElemType   = typeof(ElemVariableReadLoaded);
 }
Example #4
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Any;
     ElemType   = typeof(ElemStoreSingleVariable);
 }
Example #5
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.None
     };
     OutputType = ParameterTypes.None;
     ElemType   = typeof(ElemStart);
 }
Example #6
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.String
     };
     OutputType = ParameterTypes.Boolean;
     ElemType   = typeof(ElemLoadURL);
 }
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Any;
     ElemType   = typeof(ElemDeserializeSavebleVariables);
 }
Example #8
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.ParsedItem;
     //ElemType = typeof(ElemParsedItemInteract);
 }
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Node;
     //ElemType = typeof(ElemClickElement);
 }
Example #10
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.String;
     ElemType   = typeof(ElemTextInput);
 }
 public TSDeserializeSavebleVariables(TaskSession ts)
     : base(ts)
 {
 }
Example #12
0
 protected TSBase(TaskSession ts)
 {
     Session           = ts;
     DirectStringInput = "";
     StaticTypes(ts);
 }
Example #13
0
 protected abstract void StaticTypes(TaskSession ts);
Example #14
0
 public TSLoadSingleVariable(TaskSession ts)
     : base(ts)
 {
 }
 public TSParsedItemCreate(TaskSession ts)
     : base(ts)
 {
 }
Example #16
0
 public TSStart(TaskSession ts) : base(ts)
 {
 }
Example #17
0
 public TSWhile(TaskSession ts) : base(ts)
 {
 }
 public TSVariableReadLoaded(TaskSession ts)
     : base(ts)
 {
 }
Example #19
0
 public TSSerializeSavableVariables(TaskSession ts)
     : base(ts)
 {
 }
Example #20
0
 public TSParsedItemInteract(TaskSession ts)
     : base(ts)
 {
 }
 public TSClickElement(TaskSession ts) : base(ts)
 {
 }
 public TSFindNodes(TaskSession ts) : base(ts)
 {
 }
Example #23
0
 public TSFindSingleNode(TaskSession ts) : base(ts)
 {
 }
Example #24
0
 public TSStoreSingleVariable(TaskSession ts)
     : base(ts)
 {
 }
Example #25
0
 public TSEnd(TaskSession ts) : base(ts)
 {
 }
Example #26
0
 public TSFileAppend(TaskSession ts) : base(ts)
 {
 }
Example #27
0
 public TSHonk(TaskSession ts) : base(ts)
 {
 }
Example #28
0
 public TSTextInput(TaskSession ts) : base(ts)
 {
 }
Example #29
0
 protected override void StaticTypes(TaskSession ts)
 {
     ElemType = typeof(ElemWhile);
     throw new NotImplementedException();
 }
 public TSDebugRenderBrowser(TaskSession ts) : base(ts)
 {
 }