public final class

AmbiguousElementMatcherException

extends java.lang.RuntimeException

implements EspressoException

 java.lang.Object

↳java.lang.Throwable

↳java.lang.Exception

↳java.lang.RuntimeException

↳androidx.test.espresso.web.matcher.AmbiguousElementMatcherException

Gradle dependencies

compile group: 'androidx.test.espresso', name: 'espresso-web', version: '3.5.0-alpha06'

  • groupId: androidx.test.espresso
  • artifactId: espresso-web
  • version: 3.5.0-alpha06

Artifact androidx.test.espresso:espresso-web:3.5.0-alpha06 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test.espresso:espresso-web com.android.support.test.espresso:espresso-web

Androidx class mapping:

androidx.test.espresso.web.matcher.AmbiguousElementMatcherException android.support.test.espresso.web.matcher.AmbiguousElementMatcherException

Overview

An exception which indicates that for a given XPath there were multiple Elements found when only 1 element was expected.

Summary

Constructors
publicAmbiguousElementMatcherException(java.lang.String xpath)

Methods
from java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructors

public AmbiguousElementMatcherException(java.lang.String xpath)

Source

/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.test.espresso.web.matcher;

import androidx.test.espresso.EspressoException;

/**
 * An exception which indicates that for a given XPath there were multiple Elements found when only
 * 1 element was expected.
 */
public final class AmbiguousElementMatcherException extends RuntimeException
    implements EspressoException {

  public AmbiguousElementMatcherException(String xpath) {
    // TODO: Print out the DOM and highlight which elements were matched.
    super(
        String.format(
            "Multiple Element(s) found for xpath %s. Please narrow down " + "your search.", xpath));
  }
}