/// <summary>
        /// On backoffice/bulk-buys/not completed not deleted page checks all the records is the draw date is not in past
        /// </summary>
        public void IfPastDrawDateIsPresent()
        {
            _commonActions.SignIn_in_admin_panel();
            _driverCover.NavigateToUrl(_driverCover.BaseAdminUrl + "admin/bulk_buys?scope=not_completed_not_deleted");
            BulkBuysPageObj bulkBuys = new BulkBuysPageObj(_driver);

            StringBuilder buildReport = new StringBuilder();

            int pages = bulkBuys.NumberOfPages;

            for (int j = 1; j <= pages; ++j)
            {
                bulkBuys.NavigateToPage(j);
                for (int i = 1; i < bulkBuys.NumberOfRecordsOnPage; ++i)
                {
                    try
                    {
                        DateTime date = bulkBuys.DrawDate(i);
                        if (date.Date < DateTime.Today)
                        {
                            buildReport.Append("\n Record №" + i + " on page " + j +
                                               " has a past draw date. So the bet was not pushed to the next draw. \n");
                        }
                    }
                    catch (Exception e)
                    {
                        buildReport.Append(
                            "\n Record " + i + " has incorrect type of data at all (empty string or not a data format). " +
                            "You should check it on page" +
                            j + " \n");
                    }

                }
            }

            if (buildReport.Length > 0)
            {
                throw new Exception(buildReport.ToString());
            }
        }
Example #2
0
 /// <summary>
 /// Checks web user's email of the last not completed bulk-buy in back/bulk-buys 
 /// </summary>
 /// <param name="expectedEmail"></param>
 public void CheckWebUserInBulkBuys_BackOffice(string expectedEmail)
 {
     _commonActions.SignIn_in_admin_panel();
     _driverCover.NavigateToUrl(_driverCover.BaseAdminUrl + "admin/bulk_buys?scope=not_completed_not_deleted");
     BulkBuysPageObj bulkBuys = new BulkBuysPageObj(_driver);
     Assert.AreEqual(expectedEmail, bulkBuys.WebUser(1), "Web User email is not as expected. ");
 }
Example #3
0
 /// <summary>
 /// Checks lottery name of the last not completed bulk-buy in back/bulk-buys 
 /// </summary>
 /// <param name="expectedLottery"></param>
 public void CheckLotteryInBulkBuys_BackOffice(string expectedLottery)
 {
     _commonActions.SignIn_in_admin_panel();
     _driverCover.NavigateToUrl(_driverCover.BaseAdminUrl + "admin/bulk_buys?scope=not_completed_not_deleted");
     BulkBuysPageObj bulkBuys = new BulkBuysPageObj(_driver);
     Assert.AreEqual(expectedLottery, bulkBuys.Lottery(1), "Lottery of the last bulk buy is not as expected. ");
 }
Example #4
0
 /// <summary>
 /// Checks amount of draws to play of the last not completed bulk-buy in back/bulk-buys 
 /// </summary>
 /// <param name="expectedAmount"></param>
 public void CheckDrawsToPlayInBulkBuys_BackOffice(int expectedAmount)
 {
     _commonActions.SignIn_in_admin_panel();
     _driverCover.NavigateToUrl(_driverCover.BaseAdminUrl + "admin/bulk_buys?scope=not_completed_not_deleted");
     BulkBuysPageObj bulkBuys = new BulkBuysPageObj(_driver);
     Assert.AreEqual(expectedAmount, bulkBuys.DrawsToPlay(1), "Amount of draws to play of the last bulk buy is not as expected. ");
 }