示例#1
0
        public static void IsNotClickable(this IOperationRunner <IElementWrapper> operationRunner)
        {
            var isNotClickable = new IsNotClickableValidator();

            operationRunner.Evaluate <UnexpectedElementStateException>(isNotClickable);
        }
示例#2
0
        public static void IsNotClickable(IElementWrapper wrapper)
        {
            var isNotClickable = new IsNotClickableValidator();

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