使用动态渲染的 html 进行 Javascript 测试
使用动态 HTML 模板系统(例如 JSP、PHP 等)时,有哪些测试 Javascript 的方法?如果我有一个静态 HTML 页面,那么可以使用多种 Javascript 测试工具。
尽管在 JSP 中,仍然有 JSTL 变量被评估以生成 HTML。最终生成的 HTML 可以被 Javascript 函数用来进行操作、ajax 调用等。
您如何测试?
What are some approaches to testing Javascript when dynamic HTML templating systems (such as JSP, PHP, etc) are used? If I have a static HTML page then there are a variety of Javascript testing tools that can be used.
Though with a JSP, there are JSTL variables that are evaluated to produce HTML. The HTML that is finally produced can then be used by the Javascript functions to do the manipulation, ajax calls, etc.
How do you test?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,混合使用 javascript 和动态参数并不是一个好主意。即你应该避免:
理想情况下,你应该通过提供默认值来拥有一个不依赖于任何外部参数的 javascript。然后这些默认值可以被动态值覆盖。
无论哪种方式,您都可以使用 Selenium 来对您的页面进行功能测试。
Usually, it is not a good idea to mix javascript and dymanic parameters. I.e. you should avoid:
Ideally, you should have a javascript that does not depend on any external parameters, by providing defaults. Then these defaults can be overridden by the dynamic values.
Either way, you can use Selenium to functionally test your page.