Esempio n. 1
0
        public virtual void SetToMinimum()
        {
            var value = Retry.For(() =>
            {
                BackLargeChangeButton.Click();
                return(Value);
            }, v => v > 0, CoreAppXmlConfiguration.Instance.BusyTimeout(), TimeSpan.FromMilliseconds(0));

            if (value > 0)
            {
                throw new UIActionException(string.Format("Could not set the ScrollBar to minimum visible{0}", Constants.BusyMessage));
            }
            Logger.DebugFormat("ScrollBar position set to {0}", Value);
        }
Esempio n. 2
0
 public virtual void ScrollLeftLarge()
 {
     BackLargeChangeButton.Click();
 }