我如何对 php 网站应用或使用 selenium 测试
我主要在 php/joomla/jquery 中构建网站。有人告诉我学习一些单元测试系统,比如 selenium。
我想知道,我可以将其用于 php 网站还是仅基于 java 的网站。 当我学习 j2ee 时,我发现了很多测试系统,但我不知道那些可以与 php 和 joomla 一起使用
I mostly buil sites in php/joomla/jquery. Someone told me to learn some unit testing system like selenium.
I want to know that , can i use that for php sites or only java based sites.
When i was learning j2ee then i find many testing systems but i don't know those work with php and joomla
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Selenium 可用于 PHP 站点。最简单的入门途径是(或者至少曾经是)下载适用于 Firefox 的 Seleneium IDE 插件并使用它来构建测试。然后,它可以将您的测试作为代码导出为多种不同的语言。
顺便说一句,我不认为 Selenium 是一个单元测试工具。对于 PHP 中的单元测试,请查看 PHPunit 之类的东西。
Selenium can be used for PHP sites. Easiest path to getting started is (or was at one time, at least) to download the Seleneium IDE plugin for Firefox and use it to build tests. It can then export your tests as code into a number of different languages.
By the way, I don't consider Selenium a unit test tool. For unit testing in PHP, check out something like PHPunit.