using OpenTap; using System.ComponentModel; namespace AddInPlugin.Super { [Browsable(false)] public class LoopBase : TestStep { public bool CanContinue { get; protected set; } public override void Run() { this.RunChildSteps(); } } }