예제 #1
0
        public static void IsClickable(this IOperationRunner <IElementWrapper> operationRunner)
        {
            var IsClickable = new IsClickableValidator();

            operationRunner.Evaluate <UnexpectedElementStateException>(IsClickable);
        }
예제 #2
0
        public static void IsClickable(IElementWrapper wrapper)
        {
            var isClickable = new IsClickableValidator();

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