我正在使用
PHPUnit并尝试检查页面上是否存在文本. assertRegExp工作但使用if语句我得到错误Failed断言null为真.
原文链接:https://www.f2er.com/regex/356876.html我知道$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'; }