gpt4 book ai didi

html - 如何使用 Selenium 2 PHPUnit 获取所选单选按钮的文本

转载 作者:行者123 更新时间:2023-11-28 03:08:00 26 4
gpt4 key购买 nike

我正在尝试在我的 Selenium 2 程序中获取文本“Standard Gloss Cardstock”。我想使用 Xpath 获取所选单选按钮的文本。

<div class="calculator-paper-radio">
<label>
<input id="attr1_22272" class="calculator-paper-input" type="radio" checked="checked" value="22272" name="attr1" style="padding:0px;">
<span id="div_attr1_22272" style="padding-top:2px;">Standard Gloss Cardstock</span>
<span class="calculator-paper-desc">Our most popular option! Gloss finish for vibrant colors and high contrast.</span>
</label>
</div>

最佳答案

Java代码

String xpath = "//span[@id='div_attr1_22272']";
String text = driver.findElement(By.xpath(xpath)).getText();

我不确定如何在 PHP 中获取文本。但是 ""//span[@id='div_attr1_22272']"是正确的 xpath 定位器

关于html - 如何使用 Selenium 2 PHPUnit 获取所选单选按钮的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31759694/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com