Exemplo n.º 1
0
        public static void DoesNotContainsText(this IOperationRunner <IElementWrapper> operationRunner)
        {
            var DoesNotContainsText = new TextEmptyValidator();

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

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