pressDownOnDownstreamMobileHandle method

Future<TestGesture> pressDownOnDownstreamMobileHandle()

Implementation

Future<TestGesture> pressDownOnDownstreamMobileHandle() async {
  final handleElement = find.byKey(DocumentKeys.downstreamHandle).evaluate().firstOrNull;
  assert(handleElement != null, "Tried to press down on upstream handle but no handle was found.");
  final renderHandle = handleElement!.renderObject as RenderBox;
  final handleCenter = renderHandle.localToGlobal(renderHandle.size.center(Offset.zero));

  final gesture = await startGesture(handleCenter);
  return gesture;
}