protected ButtonDriver Button(object automationIdOrText) { var drivr = new ButtonDriver(automationIdOrText); this._list.Add(drivr); return(drivr); }
protected ButtonDriver Button(object automationIdOrText) { var drivr = new ButtonDriver(automationIdOrText); this._list.Add(drivr); return drivr; }
public bool Drive(ButtonDriver button) { if (!button.IsClicked) return Trace_n(" Button«{0}» was not clicked.", ""); return Drive(button, x => x.Click(), "Button({0}).Click()", button.Key); }