我正在使用 react 测试库和 jest 测试我的 react 应用程序。
我想知道如何在 react-testing-library 中获取具有“name”属性的元素。
例如,在下面的页面中,是否可以使用“userName”来获取该元素?
<input type="text" name="userName" />
或者我应该设置data-testId
元素并使用getByTestId
方法?
return (
<div>
<input type="text" name="userName" />
</div>
)