我正在使用 PHPUnit 并尝试检查页面上是否存在文本。assertRegExp 有效,但使用 if 语句我得到错误Failed asserting that null is true.
我知道 $test 返回 null,但如果文本存在,我不知道如何让它返回 1 或 0 或 true/false?感谢任何帮助。
$element = $this->byCssSelector('body')->text();
$test = $this->assertRegExp('/find this text/i',$element);
if($this->assertTrue($test)){
echo 'text found';
}
else{
echo 'not found';
}