public OverviewSectionParser FindHeader()
 {
     _query.Append($"//span{Xpath.ClassContains("day-card-header")}");
     return(this);
 }
        public int CountExpiredDays()
        {
            string expiredDayXpath = $"//div{Xpath.ClassContains("day-card-expired")}";

            return(_section.FindElements(By.XPath(expiredDayXpath)).Count);
        }
 public OverviewSectionParser FindDay(int order)
 {
     _query.Append($"//div{Xpath.ClassContains("days-block-item")}[{order}]");
     return(this);
 }