当前位置:   article > 正文

autoit 三次尝试 自动登陆新浪微博_autoit网页登陆

autoit网页登陆

1、登陆微博

2、输入用户名及密码

3、提交

4、写入微博信息

5、提交------未成功(对网页程序不了解,有空的人可以帮忙看看)

  1. #include <IE.au3>
  2. #AutoIt3Wrapper_run_debug_mode=Y
  3. $oIE = _IECreate ("http://weibo.com/",0,1,1,1)
  4. $StrUsr="leeboy_wang@163.com"
  5. $StrPwd="1989725";========输入用户名及密码==================
  6. ;<input type="text" value="" action-data="text=邮箱/会员帐号/手机号" action-type="text_copy" class="W_input" name="username" node-type="username" tabindex="1" maxlength="128" autocomplete="off">
  7. ;通过标志名称找输入框,<input
  8. $oInputs = _IETagNameGetCollection ($oIE, "input")
  9. for $element in $oInputs
  10. if $element.name="username" then
  11.  $element.Value=$StrUsr
  12. ElseIf $element.name="password" And $element.value="" Then
  13.  $element.Value=$StrPwd
  14. EndIf
  15. next
  16. Sleep(1000);========提交自动登陆 ==================
  17. ; <div><a href="javascript:void(0)" class="W_btn_g" action-type="btn_submit" node-type="submitBtn" suda-data="key=tblog_weibologin3&value=click_sign" tabindex="6"><span node-type="submitStates">登录</span></a></div>
  18. ;_IEAction ($oForm, "click") ;点按钮开始
  19. $oInputs = _IETagNameGetCollection ($oIE, "a")
  20. for $element in $oInputs
  21. if $element.tabindex="6" then
  22.  _IEAction ($element, "click")
  23. EndIf
  24. next;========输入微博内容 ==================
  25. ;网页上的用户的链接 : <div class="bottom_border"><textarea tabindex="1" title="微博输入框" name="" node-type="textEl" style="height: 55px;"></textarea>
  26. $oInputs = _IETagNameGetCollection ($oIE, "textarea")
  27. for $element in $oInputs
  28. if  $element.title= $element.title then
  29.  $element.Value="哥写了个程序刷微博"
  30.  MsgBox(0,"First","Messag 11")
  31. EndIf
  32. next
  33. Sleep(1000)
  34. ;=============提交微博========未成功============
  35. ;$oInputs = _IETagNameGetCollection ($oIE, "a")
  36. ;for $element in $oInputs
  37. ;if $element.class="btn_30px" then
  38. ; _IEAction ($element, "click")
  39. ;MsgBox(0,"Second","Pusblih But!")
  40. ;EndIf
  41. ;next 


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/467197
推荐阅读
相关标签
  

闽ICP备14008679号