If I use GlobalKey for some widget
final gridBuilder = GridView.builder(
itemCount: movies.length,
key: GlobalKey(debugLabel: "gridView"),
I can not access my GridView while testing by calling
find.byKey(Key('gridView'));
nether
find.byKey(GlobalKey(debugLabel: "gridView"));
Any solution except finding by type or text?