将鼠标悬停在cypress上的svg上并测试工具提示

时间:2020-06-03 03:05:17

标签: automation cypress

场景:

我有类似的东西

<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)无法正常工作

1 个答案:

答案 0 :(得分:0)

cy.get(svg).trigger('focus')

为我工作