Example #1
0
 public static GroupAction AddWait(this GroupAction ga, int seconds)
 {
     return(ga.AddSimple("Wait", () => Thread.Sleep(TimeSpan.FromSeconds(seconds))));
 }
Example #2
0
 public static GroupAction End(this GroupAction ga)
 {
     return(ga.Parent);
 }