testcafe afterEach()夹具调用可以知道测试是否通过吗?

时间:2019-02-15 21:28:24

标签: automated-tests e2e-testing testcafe

我的装置看起来像这样:

Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
    Dim Total = ProductSize * NumericUpDown1.Value
    MessageBox.Show(Total.ToString("C"))
End Sub

fixture`Admitted: Happy Path` .page(environment.admitted) .requestHooks(logger) .afterEach(logErrors); 记录该测试的所有API错误,但是我只想在测试失败的情况下记录它们。有没有办法判断刚完成的测试在logErrors中是否成功?

1 个答案:

答案 0 :(得分:4)

在下面的question中,我提供了几种解决此问题的方法。 请参考。