Exemplo n.º 1
0
 public bool IsAddNotice(string noticeText)
 {
     AddNoticeOnInfoPage(noticeText);
     Thread.Sleep(4000);
     infoPage = new Pages.InfoPage(driver);
     return(infoPage.GetNoticeText().Contains(noticeText));
 }
Exemplo n.º 2
0
        public bool IsDeleteNotice()
        {
            DeleteNoticeOnInfoPage();

            Thread.Sleep(4000);
            infoPage = new Pages.InfoPage(driver);
            return(infoPage.GetNoticeText() == "");
        }