我在Laravel 5.3项目中工作,我正在使用PhpUnit 5.7.27测试项目。对图片感到抱歉,因为我想向大家展示真正的代码,以便更好地理解。
我添加了您可以在所选行中看到[name =' add_client']的按钮的名称。我试过添加Id,但PhpUnit向我显示
InvalidArgumentException:找不到具有提交按钮的表单[add_client]
我正在尝试使用public string GetTranslation(string source)
{
string returnValue = "";
return _Dictionary.TryGetValue(source, out returnValue) ? source, returnValue;
}
按下按钮。
任何解决方案都对我很有帮助。谢谢。