/build/static/layout/Breadcrumb_cap_w.png

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: id="pagesHeaderLikeButton"

0 Comments   [ + ] Show comments

Answers (1)

Answer Summary:
Posted by: XmasterOfficial 8 years ago
White Belt
0

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
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ