Exemple #1
0
        public static void DoesNotContainsText(this IOperationRunner <IElementWrapper> operationRunner)
        {
            var DoesNotContainsText = new TextEmptyValidator();

            operationRunner.Evaluate <UnexpectedElementStateException>(DoesNotContainsText);
        }
Exemple #2
0
        public static void TextEmpty(IElementWrapper wrapper)
        {
            var doesNotContainsText = new TextEmptyValidator();

            EvaluateValidator <UnexpectedElementStateException, IElementWrapper>(wrapper, doesNotContainsText);
        }