Ejemplo n.º 1
0
 protected override void ProcessRecord() // ??
 {
     if (null == InstanceName || 0 == InstanceName.Length) {
         WriteError(
             this,
             "You need to specify input parameter: InstanceName",
             "NoInstanceNameSpecified",
             ErrorCategory.InvalidArgument,
             true);
     }
     
     var command =
         new SeSelectWebDriverCommand(this);
     command.Execute();
     //SeHelper.GetWebDriver(this, this.InstanceName);
 }
Ejemplo n.º 2
0
        protected override void ProcessRecord() // ??
        {
            if (null == InstanceName || 0 == InstanceName.Length)
            {
                WriteError(
                    this,
                    "You need to specify input parameter: InstanceName",
                    "NoInstanceNameSpecified",
                    ErrorCategory.InvalidArgument,
                    true);
            }

            var command =
                new SeSelectWebDriverCommand(this);

            command.Execute();
            //SeHelper.GetWebDriver(this, this.InstanceName);
        }