Esempio n. 1
0
        public void EnterDate()
        {
            while (Month.Text != "March")
            {
                LeftArrow.Click();
            }

            FirstDayOfMonth.Click();
        }
Esempio n. 2
0
        /// <summary>
        /// End of the the last visible day of the selected month
        /// </summary>
        /// <returns></returns>
        private DateTime LastVisibleDayOfMonth()
        {
            DateTime last = FirstDayOfMonth.AddMonths(1).AddDays(-1);

            return(last);
        }