runUITests method

Future<AutotestSummary> runUITests({
  1. dynamic onProgress(
    1. String
    )?,
})

Implementation

Future<AutotestSummary> runUITests({Function(String)? onProgress}) async {
  return _runTestGroup(
      'UI Tests',
      [
        _testUIEventCapture,
        _testNavigationIntegration,
      ],
      onProgress);
}