通常我将 Key: ValueKey 放在我想在我的测试用例中找到以进行测试的颤振元素中,但是这个特定元素已经有一个 globalKey。那么,我应该使用什么来查找元素中使用的 globalkey 呢?
值键
key: ValueKey('nameField')
在测试用例 =>
final nameField = find.byValueKey('nameField')
全局键
final LabeledGlobalKey<FormFieldState<String>> _passwordField = LabeledGlobalKey<FormFieldState<String>>("passwordFieldKey")
key: _passwordField
在测试用例 =>
final passwordField = find.???('???')