registerApplicator method

void registerApplicator(
  1. AFApplyWidgetAction apply
)

Register a way to tap or set a value on a particular kind of widget.

The intent is to allow the testing framework to be extended for arbitrary widgets that might get tapped.

Implementation

void registerApplicator(AFApplyWidgetAction apply) {
  if(_needWidgetActions) {
    applicators.add(apply);
  }
}