在慢速网络中测试 webapp
我不知道我是否可以在这里问这种问题,但我就在这里。
我有一个 ajax 打包的 Web 应用程序,一些错误仅在慢速网络上出现(至少在这种环境中这些错误的概率更高)。 所以我的问题是——这些工具是否有助于模拟慢速网络以进行测试。
I don't know if this is the kind of question I can ask here, but here I go.
I have a ajax packed web application and some bugs show up only on slow networks (atleast probability of those bugs are higher in such an environment).
So my question is this -- is these some tool which will help to simulate a slow network for testing purposes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在服务器端延迟一些时间。
您还没有告诉任何有关您的代码的信息,但它可能是:在前一个请求正在进行时启动了另一个请求(尚未处理,尚未返回),超时返回错误数据。
Delay some time on server-side.
You haven't told anything about your code, but it can be: started another request while previous one is in progress (not processed yet, not returned yet), timeout returned false data.