public override void Click(bool rightButton = false, int relativeX = 0, int relativeY = 0) { _logger.Info(string.Format("trying to click button:{0}", ActiveControlLocatorDef == null ? string.Empty : ActiveControlLocatorDef.ToString())); throw new NotImplementedException(); }
public virtual void Close(string menuOption) { _logger.Info(string.Format("selecting value:{0} for {1}", menuOption, ActiveControlLocatorDef == null ? string.Empty : ActiveControlLocatorDef.ToString())); this.SelectItem(menuOption); LastElement.GetExpandCollapsePattern().Collapse(); }
public virtual void Select(string item) { _logger.Info(string.Format("setting dropdown value:{0} for {1}", item, ActiveControlLocatorDef == null?string.Empty:ActiveControlLocatorDef.ToString())); this.SelectItem(item); }
public void UnSelect() { _logger.Info(string.Format("unchecking radio box value:{0} for {1}", "false", ActiveControlLocatorDef == null ? string.Empty : ActiveControlLocatorDef.ToString())); this.SetSelected(false); }
public override void Click(bool rightButton = false, int relativeX = 0, int relativeY = 0) { _logger.Info(string.Format("trying to click button:{0}", ActiveControlLocatorDef == null ? string.Empty : ActiveControlLocatorDef.ToString())); SystemUnderTestInstance.Click(); }
public void Select() { _logger.Info(string.Format("checking check box value:{0} for {1}", "true", ActiveControlLocatorDef == null ? string.Empty : ActiveControlLocatorDef.ToString())); this.SetChecked(true); }
public virtual void SelectNext(string item) { _logger.Info(string.Format("continue selecting from previous: value:{0} for {1}", item, ActiveControlLocatorDef == null ? string.Empty : ActiveControlLocatorDef.ToString())); this.SelectContinueWith(item); }