Matlab自动登录

2011.02.12 No Comments

人类已经无法阻止Matlab了。。。

原文地址:http://www.kui4.com/?p=159

测试通过。。。如果有装ie浏览器应该也行的。。其他浏览器可能需要修改代码。

MATLAB登陆人人网代码:原文地址:http://www.kui4.com/?p=159 测试通过。。。如果有装ie浏览器应该也行的。。其他浏览器可能需要修改代码。
MATLAB登陆人人网代码:

function renren
clc
clear
ie=actxserver(‘internetexplorer.application’);
ie.Navigate(‘http://www.renren.com/GLogin.do’);
while
    ~strcmp(ie.readystate,’READYSTATE_COMPLETE’)
    pause(.01)
end
loginname=ie.document.getElementById(‘email’);
loginname.value=’输入你的人人账号’;
password=ie.document.getElementById(‘password’);
password.value=’输入你的人人密码’;
submit=ie.document.getElementById(‘login’);
submit.click;
delete(ie);

MATLAB登陆新浪微博代码:

function weibo
ie=actxserver(‘internetexplorer.application’);
ie.Navigate(‘http://www.weibo.com’);
while ~strcmp(ie.readystate,’READYSTATE_COMPLETE’)
    pause(.01)
end
loginname=ie.document.getElementById(‘loginname’);
if ~isempty(loginname)
    loginname.value=’你的新浪微博账号’;
    password=ie.document.getElementById(‘password’);
    password.value=’你的登录密码’;
    submit=ie.document.getElementById(‘login_submit_btn’);
    submit.click;
end
delete(ie);
Leave a Reply
You must be logged in to post a comment.