public List <IWebElement> GetEmailsWithSubject(string subject) { var emails = SeleniumHelpers.WaitForElements(By.CssSelector(DataAttributeDecorators.YahooMailFolderDecorators.EmailListItem)); return(emails.Where(x => x.FindElement(By.CssSelector(DataAttributeDecorators.YahooMailFolderDecorators.EmailSubject)).Text == subject).ToList()); }