I have some unit tests that tap on the text field and enter text into the text field. These passed when I was using a TextField widget and the find.byKey finder. I tried using the find.byWidget(HashTagTextField() but that didn't work either.
Does anyone know if there is something else needed to find this widget with the flutter test package?
The only error I get is that there is no element found.
I have some unit tests that tap on the text field and enter text into the text field. These passed when I was using a
TextField
widget and thefind.byKey
finder. I tried using thefind.byWidget(HashTagTextField()
but that didn't work either.Does anyone know if there is something else needed to find this widget with the flutter test package?
The only error I get is that there is no element found.