有没有一种易于使用且维护良好的分体式和分体式? PHP 的多变量测试库?
Google Web Optimizer 很棒,但我不喜欢依赖 JavaScript 进行拆分测试的想法,更不用说多变量测试了。我正在寻找一个相当简单且维护良好的 php 测试库。
有谁知道是否存在测试库?
开源和/或免费是一个优点,但只要它物有所值,商业软件也可以。
拆分测试和多变量测试是指在网站的访问者之间拆分多个不同的页面(拆分测试)或具有不同部分的单个页面,选择用户部分的特定操作或一组操作作为转化,并且根据用户数量和转化次数计算哪个页面或部分最好。
Google Web Optimizer is great, but I don't like the idea of depending upon JavaScript for split testing let alone multivariate testing. I'm looking for a fairly simple and well maintained testing library for php.
Does anyone know if a testing library exists?
Open source and/or free is a plus, but as long as its worth the money commercial software will do.
Split testing and multivariate testing is where a number of different pages (split testing), or a single page with different sections are split between visitors of a site, a specific or set of actions on the users part are chosen as a conversion, and it calculates based on numbers of users and conversions which page, or section is best.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了这个
http://www.phpscenario.org/
看起来保养得还不错。我会尝试一下,看看它是否符合我的需求。
I found this
http://www.phpscenario.org/
It seems to be somewhat well maintained. I'll try it out and see if it fits my needs.
尝试 PHPUnit
http://phpunit.sourceforge.net/
好的,现在了解您的问题。答案是仅仅使用 PHP 是不可能做到这一点的。您想要基于后端语言进行用户界面测试,这没有任何意义。您依赖于 javascript,因为 javascript 是您可以使用的前端语言。为什么你不想依赖 Javascript?
Try PHPUnit
http://phpunit.sourceforge.net/
OK, then now understanding your question. The answer is its impossible to do this with just PHP. You're wanting to do user interface testing based on the back end language, it just doesn't make any sense. You are dependent upon javascript, because javascript is the front end language available to you. Why don't you want to depend on Javascript?