0

我是硒初学者。不知道如何从以下 html 代码中捕获工具提示。这是html的结构:

<a id="aui_3_4_0_1_2236" title="Graceful shut down of the platform and power-off the hardware.">
    <span id="aui_3_4_0_1_2235" class="aui-button">
        <span id="aui_3_4_0_1_2234" class="aui-button-`enter code here`content">
            <input id="_PlatformSummaryPortlet_WAR_CPFSPGPortlet10SNAPSHOT_INSTANCE_AEDwGJz6R6iD_soft" class="aui-button-input" type="button" value="Soft Shutdown" onclick="javascript:soft()" style="display: inline;"/>
        </span>
    </span>
</a>

并且标题具有工具提示值。我尝试了以下方法来获取工具提示:

WebElement Softshtdwn = driver.findElement(By.xpath(Object.SoftShutdownButton)); 
String tooltip = Softshtdwn.getAttribute("title");
String tooltip1 = Softshtdwn.getText(); 
String tooltip2 = Softshtdwn.getCssValue("title");

但由于某种原因,我得到了空值作为回报。任何帮助表示赞赏。注意:不能使用 by.ID,因为 ID 是动态的。

4

1 回答 1

0

使用以下逻辑,您可以获得工具提示

但是,请确保您使用正确且唯一的定位器来获得确切所需的值。

String toolTip=driver.findElement(By.xpath("")).getAttribute("title");

如果您无法构建正确的 xpath,请在此处发布您的 html 代码。我会帮你的。

于 2013-02-12T16:04:30.310 回答