我有一个代码,我希望它等到中间的某个地方,然后再继续前进.
在WebBrowser1.Document.Window.DomWindow.execscript(“checkPasswordConfirm();”,“ JavaScript”)之后
我想要等待.5秒,然后做其余的代码.
在WebBrowser1.Document.Window.DomWindow.execscript(“checkPasswordConfirm();”,“ JavaScript”)之后
我想要等待.5秒,然后做其余的代码.
WebBrowser1.Document.Window.DomWindow.execscript("checkPasswordConfirm();","JavaScript") Dim allelements As HtmlElementCollection = WebBrowser1.Document.All For Each webpageelement As HtmlElement In allelements If webpageelement.InnerText = "Sign Up" Then webpageelement.InvokeMember("click") End If Next
您将需要使用
System.Threading.Thread.Sleep(number of milliseconds).
原文链接:https://www.f2er.com/vb/255546.htmlWebBrowser1.Document.Window.DomWindow.execscript("checkPasswordConfirm();","JavaScript") Threading.Thread.Sleep(500) ' 500 milliseconds = 0.5 seconds Dim allelements As HtmlElementCollection = WebBrowser1.Document.All For Each webpageelement As HtmlElement In allelements If webpageelement.InnerText = "Sign Up" Then webpageelement.InvokeMember("click") End If Next