标签: php selenium selenium-webdriver phpunit
过去我已经创建了几个C#单元测试,我可以在发生特定错误时和在debugmode中运行时激活断点。这段代码是这样的:
C#
if(System.Diagnostics.Debugger.IsAttached) System.Diagnostics.Debugger.Break();
但现在我想在PHPUnit(Selenium Webdriver)中做同样的事情。有谁知道怎么做?它甚至可能吗?
PHPUnit
Selenium Webdriver