NoMatchingViewException
  public
  
  final
  
  class
  NoMatchingViewException
  
  
  
  
  
  
  
  
  
  
    extends RuntimeException
  
  
  
  
  
      implements
      
        EspressoException
      
  
  
| java.lang.Object | ||||
| ↳ | java.lang.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.lang.RuntimeException | |||
| ↳ | android.support.test.espresso.NoMatchingViewException | |||
Indicates that a given matcher did not match any elements in the view hierarchy.
Contains details about the matcher and the current view hierarchy to aid in debugging.
Since this is usually an unrecoverable error this exception is a runtime exception.
References to the view and failing matcher are purposefully not included in the state of this object - since it will most likely be created on the UI thread and thrown on the instrumentation thread, it would be invalid to touch the view on the instrumentation thread. Also the view hierarchy may have changed since exception creation (leading to more confusion).
Summary
| Nested classes | |
|---|---|
| 
        
        
        
        
        class | NoMatchingViewException.BuilderBuilder for  | 
| Public methods | |
|---|---|
| 
        
        
        
        
        
        String | 
      getViewMatcherDescription()
      Returns a string description of the ViewMatcher that did not match any view in the hierarchy. | 
| Inherited methods | |
|---|---|
|  From
class 
  
    java.lang.Throwable
  
 | |
|  From
class 
  
    java.lang.Object
  
 | |
Public methods
getViewMatcherDescription
String getViewMatcherDescription ()
Returns a string description of the ViewMatcher that did not match any view in the hierarchy.
| Returns | |
|---|---|
| String | |
- Interfaces
- Classes
- Exceptions
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
