场景:
我有类似的东西
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- Using g to inherit presentation attributes -->
<g fill="white" stroke="green" stroke-width="5">
<circle cx="40" cy="40" r="25" />
<circle cx="60" cy="60" r="25" />
</g>
</svg>
将鼠标悬停在svg上将显示工具提示,我需要测试工具提示是否显示且内容正确。
有什么建议吗?尝试过触发(mouseover)无法正常工作
答案 0 :(得分:0)
cy.get(svg).trigger('focus')
为我工作