Ejemplo n.º 1
0
        public IWebElement HasValidationMessage()
        {
            var element = WebApp.FindValidationMessageForFieldByConvention(_property);

            if (element == null)
            {
                throw new AssertionException("Validation message was not found for field!");
            }

            if (!element.Displayed)
            {
                throw new AssertionException("Validation message for field is not visible!");
            }

            return(element);
        }