如何验证按钮的data-qtip的值?

How to verify the value of the data-qtip of button?

我正在 IE8 上进行自动化测试,我需要验证按钮的提示,我正在自动化的网站使用 extjs,出于某种原因,IE8 和 Selenium IDE IEDriver 在涉及命令 "mouseOver" 时不能很好地工作。我在 Firefox 中对 Selenium IDE 进行了以下操作并且有效:

<tr>
    <td>mouseOver</td>
    <td>//span[text()='Relatórios de Retorno']</td>
    <td></td>
</tr>
<tr>
    <td>waitForVisible</td>
    <td>id=ext-quicktips-tip-innerCt</td>
    <td></td>
</tr>
<tr>
    <td>verifyText</td>
    <td>id=ext-quicktips-tip-innerCt</td>
    <td>Gera relatórios de retorno</td>
</tr>

但出于某种原因它在 IE 上不起作用,即使我停止了 Selenium IDE 和驱动程序,并将鼠标悬停在按钮上 "manually",提示也不行t popup,所以我想尝试直接通过data-qtip验证它,但我不知道how.Here是我在IE8上用F12拍摄的按钮代码,我想验证的值数据提示:

<A aria-disabled=false aria-hidden=false hideFocus style="MARGIN: 0px; TOP: 0px; LEFT: 495px" id=aejs-button-1104 class="x-btn x-unselectable x-box-item x-toolbar-item x-btn-default-toolbar-medium" role=button tabIndex=-1 unselectable="on" data-componentid="aejs-button-1104" data-qtip="Gera relatórios de retorno">

我使用命令 "verifyAttribute" 找到了解决方案,我是这样做的:

<tr>
    <td>verifyAttribute</td>
    <td>id=aejs-button-1104@data-qtip</td>
    <td>Gera relatórios de retorno</td>
</tr>