caimuqing

例如自动打开繁星的网页并且登录

Private Sub CommandButton1_Click()
    Dim ie As Object
    Set ie = CreateObject("InternetExplorer.Application")
    ie.navigate "http://fanxing.kugou.com/"
    While ie.readyState <> 4 Or ie.Busy = True
    DoEvents
    Wend
    ie.document.getElementById("fxLogin").Click
    ie.document.getElementById("loginSdk_loginUserName").Value = "1398384979@qq.com"
    ie.document.getElementById("loginSdk_loginPassWord").Value = "basketball"
    ie.document.getElementById("loginSdk_loginBtn").Click
End Sub

 

分类:

技术点:

相关文章:

  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2021-05-19
  • 2022-12-23
  • 2021-09-27
  • 2021-07-20
  • 2022-12-23
相关资源
相似解决方案