0

フラッターウィジェットのテストを始めたばかりで、この問題に遭遇しました。これが予想される動作かどうか疑問に思っていました。find.byType で TextField を見つけようとすると成功しますが、find.byWidget では成功しません。これは正常ですか、それとも何か間違っていますか? 目標は、後でテキスト フィールドにテキストを入力し、ボタンをタップすることです。

私のテキストフィールドとボタン:

Column(
    children: [
      TextField(
        style: TextStyle(
          color: Colors.black,
        ),
        autofocus: true,
        autocorrect: false,
        enableSuggestions: false,
        controller: _controller,
        cursorColor: Colors.black,
        decoration: InputDecoration(
            hintText: 'Fill in.....',
          hintStyle: TextStyle(fontSize: 18),
        ),
      ),
      Row(
        mainAxisAlignment: MainAxisAlignment.end,
        children: [
          ElevatedButton(
              onPressed: () {
                onSubmit(_controller.text);
              },
              child: Text('Press me!',
                  style: TextStyle(
                    fontSize: 18,
                    color: Theme.of(context).primaryColorBrightness ==
                        Brightness.dark
                        ? Colors.white
                        : Colors.black,
                  ))),
      ],),
    ],
  ),

そして、これは私のテストです:

tester.ensureVisible(find.byType(TextInputWidget));
  expect(find.byType(TextInputWidget), findsOneWidget);

  final a = TextField(
    style: TextStyle(
      color: Colors.black,
    ),
    autofocus: true,
    autocorrect: false,
    enableSuggestions: false,
    controller: TextEditingController(),
    cursorColor: Colors.black,
    decoration: InputDecoration(
      hintText: 'Fill in.....',
      hintStyle: TextStyle(fontSize: 18),
    ),
  );

  //expect(find.byWidget(a), findsOneWidget); // Fails
  expect(find.byType(TextField), findsOneWidget); //Succeeds
4

1 に答える 1