如何在 Tester->click in codeception 中忽略 html?

How to ignore html in Tester->click in codeception?

我有一个 html 字符串,看起来像这样:

<div>firstname <br> <span>lastname</span></div>

有没有办法在我的测试仪上 运行:

$I->click('firstname lastname');

同时忽略标签 ?

您可以像这样使用 xpath:

//div[contains(.,'firstname') and contains(.,'lastname')]