4

我有一个这样的小部件测试,我可以找到带有 的小部件actionKey,但是点击测试失败并且tapped在之后值为 false tester.tap(...),我的测试有什么问题?

testWidgets('some test', (WidgetTester tester) async {
  final UniqueKey actionKey = UniqueKey();
  bool tapped = false;

  await tester.pumpWidget(MaterialApp(
    home: Scaffold(
      body: SlidableListItem(
        child: const ListTile(title: Text('item')),
        actions: <Widget>[
          InkWell(
            key: actionKey,
            child: const Text('action'),
            onTap: () => tapped = true,
          ),
        ],
      ),
    ),
  ));

  await tester.tap(find.byKey(actionKey));
  await tester.pump();

  expect(find.byKey(actionKey), findsOneWidget);
  expect(tapped, isTrue); <- failes
});
The following TestFailure object was thrown running a test:
  Expected: true
  Actual: <false>
4

2 回答 2

0

评估小部件对我有用。

InkWell InkWellButton() => find
          .byKey(actionKey)
          .evaluate()
          .first
          .widget;                                                                                 

然后对 Inkwell 采取行动。

InkWellButton().onTap();
await tester.pumpAndSettle();                                                            

希望这可以帮助!

于 2021-10-26T04:37:55.600 回答
0

点击 2 秒后尝试等待。

      await tester.pump(Duration(seconds: 2));

我认为它应该有效,因为它对我有用。

于 2021-01-13T10:18:59.270 回答