gpt4 book ai didi

selenium-ide - 在 Selenium IDE 上,如何断言标签之间的文本值?

转载 作者:行者123 更新时间:2023-12-03 16:43:31 24 4
gpt4 key购买 nike

源码为:<div class="qa">on</div>
我想在 Selenium IDE 中断言 <div ...> 之间的值和 </div>是“on”。

我尝试使用 assertValue 和 assertAttribute,但是这两个命令都出现错误。如果我对 xpath=//div[@class='qa'] 使用 assertElementPresent/,它会通过,但它不会断言 <div> 之间的值是“on”。

最佳答案

使用 assertText (或 verifyText 如果测试不应该在失败时停止):

assertText  xpath=//div[@class='qa']  exact:on

从引用:

assertText(locator, pattern)

Generated from getText(locator)

Arguments:

  • locator - an element locator

Returns:

  • the text of the element

Gets the text of an element. This works for any element that contains text. This command uses either the textContent (Mozilla-like browsers) or the innerText (IE-like browsers) of the element, which is the rendered text shown to the user.

关于selenium-ide - 在 Selenium IDE 上,如何断言标签之间的文本值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32622067/

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