ignore method
Add one or more ignore regions to this target (i.e. areas whose content matches anything).
Syntax
eyes.check(Target.window().ignore(regionSelector, regionSelectors))
eyes.check(Target.window().ignore(element, elements))
eyes.check(Target.window().ignore(regionSelectors))
eyes.check(Target.window().ignore(elements))
eyes.check(Target.window().ignore(region, regions))
eyes.check(Target.window().ignore(regions))
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.
- regions
- Type:Region[]
- An array of Region objects that defines rectangular areas in the checked image.
- regionSelector
- Type:By
- An object that defines a selector for the region.
- regionSelectors
- Type:By ...
- one or more selectors separated by commas.
- element
- Type:WebElement
- An object whose area defines the area for the region.
- elements
- Type:WebElement ...
- Zero or more additional objects, each of which defines an isolated region in the window.
- regionSelectors
- Type:By[]
- An array of selector objects that define regions.
- elements
- Type:WebElement[]
- An array of objects, each of which defines a region.
Return value
- Type: SeleniumCheckSettings
- 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.