tapZone method

  1. @Deprecated('Use tap(find.textLocation(...)) or tapAt(x, y) instead')
void tapZone(
  1. String zoneId
)

Simulates a full tap on the zone with zoneId.

Deprecated — use tap with Finder.textLocation or tapAt.

Implementation

@Deprecated('Use tap(find.textLocation(...)) or tapAt(x, y) instead')
void tapZone(String zoneId) {
  throw UnsupportedError(
    'Zone-based interactions were removed from artisanal_widgets. '
    'Use tap(find.textLocation(...)) or tapAt(x, y).',
  );
}