Find and click a button in an opened Internet Explorer.
As it sais in the title, IE is opened. I want to make a VBScript to click a button. Internet Explorer window is opened by the other part of the VBs. My other VBs will open an URL then it will press a button that everytime will open a new IE with a random URL and this part I want to press a button on that new IE.
The button ID is:
The button ID is:
id="pagesHeaderLikeButton"
0 Comments
[ + ] Show comments
Answers (1)
Answer Summary:
Please log in to answer
Posted by:
XmasterOfficial
9 years ago
Top Answer
Well... I found the answer.
For Each wnd In CreateObject("Shell.Application").Windows
If InStr(wnd.Name,"Internet") Then
if InStr(wnd.Document.URL,"facebook.com") Then
Set IE2 = wnd
Exit For
End If
End If
Next
Set Butlike = IE2.Document.getElementsByTagName("button")
For Each btn In Butlike
If btn.type = "submit" Then btn.Click()
Next
For Each wnd In CreateObject("Shell.Application").Windows
If InStr(wnd.Name,"Internet") Then
if InStr(wnd.Document.URL,"facebook.com") Then
Set IE2 = wnd
Exit For
End If
End If
Next
Set Butlike = IE2.Document.getElementsByTagName("button")
For Each btn In Butlike
If btn.type = "submit" Then btn.Click()
Next