public void SetScoreOnDay(int score, DateTime date)
 {
     DateScores.Add(new ChessDateScore(this)
     {
         Date  = date,
         Score = score
     });
 }
 public void GoToMatchPage(string date, string firstTeam, string secondTeam)
 {
     SelectMatch(date, firstTeam, secondTeam);
     DateScores.FindElement(By.XPath(".//span[contains(text(), '" + firstTeam + "')]")).Click();
 }