Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何模拟单击 Ag-Grid 第一行最后一列上呈现的按钮?我能够使用getDisplayedRowAtIndex(0). 但不知道如何进一步进行
getDisplayedRowAtIndex(0)
任何指针?
** 尝试使用酶包装模拟点击以进行测试。
我只是为我的按钮添加一个唯一的 id,然后找到它并模拟点击。
const component = mount(<bla..>); component.find('button#id').simulate('click', {});