protected override void ProcessRecord()
 {
     this.checkInputWebElementOnly(this.InputObject);
     
     SeReadWebElementTextCommand command =
         new SeReadWebElementTextCommand(this);
     command.Execute();
     //SeHelper.GetWebElementText(this, ((IWebElement[])this.InputObject));
 }
Ejemplo n.º 2
0
        protected override void ProcessRecord()
        {
            checkInputWebElementOnly(InputObject);

            var command =
                new SeReadWebElementTextCommand(this);

            command.Execute();
            //SeHelper.GetWebElementText(this, ((IWebElement[])this.InputObject));
        }