本文介绍了Internet Explorer的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好Internet Explorer中的问题不点击登录按钮我不知道这段代码的错误
hello Problems in internet explorer Does not click the login button I do not know where error this code
Dim web As Object
web = CreateObject("InternetExplorer.Application")
web.Navigate("www.facebook.com")
web.Visible = True
Threading.Thread.Sleep(5000)
web.Document.GetElementById("submit").InvokeMember("click")
我不想使用性能webbrowser而且我不想使用sendkey
我想要使用有问题的代码并处理它以及如何通过单击按钮
I do not want to use the performance webbrowser And I do not want to use sendkey
I want to use the code in question and deal with it and how do I access by clicking on the button
推荐答案
Dim web As Object
web = CreateObject("InternetExplorer.Application")
web.Navigate("www.facebook.com")
web.Visible = True
Threading.Thread.Sleep(5000)
web.Document.GetElementById("loginbutton").InvokeMember("click")
它可能对你有用
谢谢
Gaurav Dhol
Skype:dhol.gaurav
it might work for you
Thanks
Gaurav Dhol
Skype: dhol.gaurav
这篇关于Internet Explorer的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!