51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1363|回复: 0
打印 上一主题 下一主题

怎么获取js的执行结果

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2015-3-27 14:26:14 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我用的是selenium2.43.
我在写一个网站的登录自动化测试代码,其中一个case是输入错误的用户或密码,页面弹出提示“用户或密码错误”。
这执行的是以下js:
$('#login_form').submit(function () {
        var user_name = $('.accountName').val();
        var user_password = $('.accountPwd').val();
        var check_code = $('.check_code').val();
        var check = $('body').hasClass('show_check');
        if (user_name == "请输入用户名" | user_name == "") {
            $('#id_tips').show();
            $('.accountName').focus();
            return false;
        }
        if (user_password == "") {
            $('#pwd_tips').show();
            $('.accountPwd').focus();
            return false;
        }
        if (check && check_code == "") {
            $('#check_tips').show();
            $('.check_code').focus();
            return false;
        }
                //$.dialog.tips(user_name+'--'+user_password+'---'+check_code)
                //去后台验证
                jQuery.post("/eden.oa/logon/ajaxLogon.action", {"accountInfo.accountName":user_name, "accountInfo.accountPwd":user_password, "checkCode":check_code}, function (data) {
                        if (data["success"] == "true") {
                                c_user_name = getCookie("c_user_name");
                c_user_password = getCookie("c_user_password");
                setCookie("c_user_name", user_name);
                setCookie("c_user_password", user_password);
                                window.location.href = "/eden.oa/admin/console/index.action";
                        } else {
                                error_num++;
                                $.dialog.tips(data["error"]["errorMsg"],2);
                                $('#check_img').click();
                        }
                });
                $('#check_tips').hide();
                return false;
        });

我的问题是我在selenium里如何获取到页面提示的“用户或密码错误”信息。
非常感谢~~~~~~~
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-24 00:24 , Processed in 0.066945 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表