widgetWithImage method Null safety

Finder widgetWithImage(
  1. Type widgetType,
  2. ImageProvider<Object> image,
  3. {bool skipOffstage = true}
)

Looks for widgets that contain an Image descendant displaying ImageProvider image in it.

Sample code

// Suppose you have a button with image in it:
Button(
  child: Image.file(filePath)
)

// You can find and tap on it like this:
tester.tap(find.widgetWithImage(Button, FileImage(filePath)));

If the skipOffstage argument is true (the default), then this skips nodes that are Offstage or that are from inactive Routes.

Implementation

Finder widgetWithImage(Type widgetType, ImageProvider image, { bool skipOffstage = true }) {
  return find.ancestor(
    of: find.image(image),
    matching: find.byType(widgetType),
  );
}