grabTextFrom 找到预期的字符串,使用 Locator::contains 的断言不能

grabTextFrom finds anticipated string that assertion using Locator::contains cannot

我有一个有趣的案例 HTML 和一个使用 PhpBrowser 的 Codeception 验收测试,我在 Whosebug 上找不到类似的问题。

我想断言 P 标签的内容(作为页面上唯一 table 的一部分)包含预期的短语。

// representative code
$anticipatedValue = "updated text description";
$xpath = "//table/tbody/tr[position() = 1]/td[position() = 2]/descendant::p";
$val = $I->grabTextFrom($xpath); // this equals the value of $anticipatedValue;
echo "the value is[" .$val."][".$anticipatedValue."]"; // these match perfectly, no trimming needed
$I->see(Locator::contains($xpath,$anticipatedValue)); //this fails
$I->see(Locator::contains($xpath,$val)); //so does this

失败 HTML 输出没有显示任何异常。我希望在 PhpBrowser 中对 XPath 有更多经验的人可以指出我缺少的东西。

我正在查看的 HTML 部分在下方。这是我正在向其添加测试的遗留应用程序,因此如您所见,目前 HTML 不是最优的。

<table id="calendar" class="unitable" cellspacing=0 cellpadding=0>
    <thead>
        <tr>
            <th>Time</th>
            <th></th>
        </tr>
    </thead>
    <tbody>
    <tr class="past"><td>10 Dec 00:00</td>
        <td class="entry" rowspan=2>
            <div class="time">Tue 10 09:00 - Tue 10 17:00</div>
            <div class="stage">new stage B</div>
            <p class="description">updated text description</p>
        </td>
    </tr>
    <tr class="past">
        <td>10 Dec 12:00</td>
    </tr>
    <tr class="past">
        <td>11 Dec 00:00</td>
        <td class="entry" rowspan=1>
            <div class="time">Wed 11 09:00 - Wed 11 11:30</div>
            <div class="stage">new stage C</div>
            <p class="description">this is new stage C</p>
        </td>
    </tr>
    <tr class="past">
        <td>11 Dec 12:00</td>
        <td></td>
    </tr>
    <tr class="past">
        <td>12 Dec 00:00</td>
        <td></td>
    </tr>
    <tr class="past">
        <td>12 Dec 12:00</td>
        <td class="entry" rowspan=1>
            <div class="time">Thu 12 13:30 - Thu 12 17:00</div>
            <div class="stage">new stage D</div>
            <p class="description">this is new stage D</p>
        </td>
    </tr>
</tbody>
<tfoot></tfoot>

</table>

失败报告如下:

Failed asserting that on page ...
{short snippet of upper page HTML - not from the area under scrutiny, followed by}
[Content too long to display. See complete response in '/var/www/public/vhosts/system/tests/_output/' directory]
--> contains "//table/tbody/tr[position() = 1]/td[position() = 2]/descendant::p[contains(., 'updated text description')]".

非常感谢您考虑这个问题。

你的问题是你将 Locator::contains 的结果传递给 $I->see() 方法, see 期望得到一个字符串作为第一个参数,它正在 HTML.

中寻找确切的文本

开始
$I->see('updated text description');

如果要检查文本是否显示在特定位置,将 XPath 表达式作为第二个参数传递:

$I->see('updated text description', '//table/tbody/tr[position() = 1]/td[position() = 2]/descendant::p');

记录在 https://codeception.com/docs/modules/PhpBrowser#see