我有一个样式按钮:
const MyButton = styled.button`...`
我用onClick道具渲染它:
<MyButton onClick={props.onClick}>A Button</MyButton>
在我的按钮测试文件中,我使用酶来测试onClick(样式按钮导入为“按钮”):
let counter = 0;
const component = shallow(
<Button onClick={() => counter++}>
A Button
</Button>
);
component.find(Button).simulate('click');
在控制台中我得到: Method “simulate” is meant to be run on 1 node. 0 found instead.
使用调试时,component.debug()我看到元素是<styled.button>...</styled.button> 我尝试更改我find()的接收styled.button甚至添加一个类名,我在调试时可以看到该类名,但似乎没有得到元素。
如何找到元素并在其上模拟事件?谢谢
蛊毒传说
桃花长相依
相关分类