我正在尝试测试具有 aendAdornment
IconButton
和 other的组件TreeView
,但是 theIconButton
和ExpandIcon
/CollapseIcon
都没有很好的选项来调度测试事件。
这是TextField
我正在使用的组件:
<TextField
fullWidth
label="Label"
onChange={handleChange}
type="text"
InputProps={{
endAdornment: (
<InputAdornment >
<IconButton onClick={openAssetHierarchy}>
<Folder />
</IconButton>
</InputAdornment>
),
}}
/>
这是TreeView
组件:
<TreeView
defaultCollapseIcon={<ArrowDropDown />}
defaultExpandIcon={<ArrowRight />}
defaultEndIcon={<div style={{ width: 24 }} />}
onNodeToggle={handleToggle}
onNodeSelect={handleSelect}
>
[...]
</TreeView>
没有很好的查询来获取测试的图标。我怎样才能得到这些选项?