ignore method
Add one or more ignore regions to this target (i.e. areas whose content matches anything).
Syntax
eyes.check(Target.window().ignore(region, regions))
eyes.check(Target.window().ignore(matchers))
Parameters
- region
- Type:Region
- An object that defines a rectangular area in the window.
- regions
- Type:Region ...
- Zero or more additional rectangle objects separated by commas or passed as an array.
- matchers
- Type:Matcher ...
- The Matcher types can be any of the following Hamcrest Matchers: ViewMatcher, RootMatcher, LayoutMatcher or PreferenceMatcher
Return value
- Type: ICheckSettings
- The value returned is the object that called the method. You can use it to call other methods supported by the object class.
Remarks
You may call this method multiple times in a given chain.
Ignore regions should not overlap each other or other types of regions
such as floating or match level regions.