BDD 新手...heroku 插件 - stillalive 没有按下按钮?
我想使用 Heroku 的 stillalive 插件为 http://designer.mobdis.biz
但是我遇到了当我按“person_submit”
时的问题,而
<input id="person_submit" name="commit" type="button" value="Login" class="loginLargeButton">
没有输入任何电子邮件和密码。它应该显示
密码无效
事实并非如此。知道如何解决这个问题吗?
I want to impliment BDD with stillalive addon of heroku for http://designer.mobdis.biz
But I facing the problem with When I press "person_submit"
for
<input id="person_submit" name="commit" type="button" value="Login" class="loginLargeButton">
without input any email and password. It should show
Password is not valid
which it isn't. Any idea how to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您将登录按钮从 type='button' 更改为 type='submit' 那么当您单击它时,您将看到该消息;
“您没有提供任何身份验证详细信息。”
这在您的静态测试中可能会更有效。
更新:虽然我认为问题可能是您用于处理点击的 javascript 就是您的问题所在,因为我不认为 StillAlive 等将处理/执行/读取 javascript。
If you change your LOGIN button to type='submit' from type='button' then when you click it you'll see the message;
"You did not provide any details for authentication."
That may work better for you in your stillalive tests.
UPDATE: Although I think the problem maybe the javascript that you're using for handling the click is what your problem is as I don't think StillAlive etc will be handling/executing/reading the javascripts.
我只是在你的网站上手动尝试过,但什么也没发生。 (适用于 Mac 的 Safari 5.0.5)。
I just tried that manually on your site and nothing happened. (Safari 5.0.5 for Mac).
FWIW StillAlive.com 现在拥有完全支持 Javascript 的工作人员。所以上面基于 Javascript 的登录表单应该可以正常工作。
FWIW StillAlive.com now has fully Javascript capable workers. So the above Javascript based login form should work fine.