Example #1
0
        protected TextBoxDriver TextBox(object automationIdOrText)
        {
            var drivr = new TextBoxDriver(automationIdOrText);

            this._list.Add(drivr);
            return(drivr);
        }
Example #2
0
 protected TextBoxDriver TextBox(object automationIdOrText)
 {
     var drivr = new TextBoxDriver(automationIdOrText);
     this._list.Add(drivr);
     return drivr;
 }
Example #3
0
	public bool Drive(TextBoxDriver textBox)
	{
		return Drive(textBox, x => x.SetValue(textBox.Text),
				"TextBox({0}).SetValue(“{1}”)", textBox.Key, textBox.Text);
	}