提问人:Rajesh Narayan 提问时间:11/23/2020 最后编辑:Alex SkorkinRajesh Narayan 更新时间:12/3/2020 访问量:147
在 testcafe 中,excel 文件的客户端验证失败
Client side validation on excel file is failing in testcafe
问:
我们的网站是在react上开发的,上传excel后,excel验证在前端使用第三方库[sheet JS]进行。手动工作,但 testcafe 自动化失败。在客户端验证过程中,自动化挂起。
答:
1赞
Dmitry Peredreev
12/3/2020
#1
我查看了您共享的错误消息,此问题与 https://github.com/DevExpress/testcafe/issues/2895 类似。
TestCafe 将其他数据存储在 中。如果填满,测试可能会挂起。localStorage
localStorage
若要防止 TestCafe 将日志保存到 ,请在每次测试之前(在用户安装期间)运行以下代码:localStorage
const disableTestcafeLogStorage = ClientFunction(() => {
window["%testCafeDriverInstance%"]._onConsoleMessage = () => {};
});
await disableTestcafeLogStorage();
有关详细信息,请参阅此线程。
上一个:使用模式验证客户端数据输入
评论