gpt4 book ai didi

codeception - 使用 codeception 计算某个类在页面中出现的次数

转载 作者:行者123 更新时间:2023-12-02 21:37:39 27 4
gpt4 key购买 nike

我正在使用 Codeception 运行验收测试,我需要计算带有“.remove”类的按钮在一页中出现的次数。此类按钮位于 html 表内,计数取决于购物车中的商品数量。
下面是我尝试使用的代码:

    $I->amOnPage("/cart/");
$table = $I->grabTextFrom(".//*[@id='cart']/table");
$rows = explode("<tr>", $table);
$rcount = count($rows);
while ($rcount >= 0) {
$I->click(".remove");
$rcount--;
}
$I->see("Your shopping cart is empty.");

最佳答案

我知道这有点晚了,但您应该尝试 $I->seeNumberOfElements,如下所述:

http://codeception.com/docs/modules/WebDriver#seeNumberOfElements

关于codeception - 使用 codeception 计算某个类在页面中出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21011597/

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