+ Reply to Thread
Results 1 to 4 of 4

VBA / Web Automation / Finding child IE Window:

Hybrid View

downtown1933 VBA / Web Automation / ... 02-05-2013, 11:16 AM
downtown1933 Re: VBA / Web Automation /... 02-06-2013, 11:07 AM
Chippy Re: VBA / Web Automation /... 02-22-2013, 08:33 PM
downtown1933 Re: VBA / Web Automation /... 02-26-2013, 01:58 PM
  1. #1
    Registered User
    Join Date
    02-02-2013
    Location
    texas
    MS-Off Ver
    Excel 2003/2010
    Posts
    59

    VBA / Web Automation / Finding child IE Window:

    Hey all,
    I am having some trouble getting VBA to focus on the IE child window after a link has been clicked.
    The 1st page i have automated like so:

    Sub Counties()
    
    Dim IE As Object
    Dim ctrl As Object
    Dim str As String
    
    ' --------------------------------[ New Window ]--------------------------------------
        Set IE = CreateObject("InternetExplorer.Application") ' New InternetExplorer
        strURL = "http://staging.trueautomation.com/ta/index.php/PropertyAccess_noscript"
    
    ' ----------------------[ Navigate To  1st Page ]-----------------------------------
        
        IE.Visible = True
        IE.Navigate strURL
        
        Do Until Not IE.Busy: DoEvents: Loop
        Do Until IE.readyState = 4: DoEvents: Loop    
     ' ----------------------[ Click a Link ]---------------------------------------------
        Set doc = IE.Document
        Set ctrl = doc.getElementById("text")
        Set frm = doc.getElementById("gpx_content")
        frm.all(100).Click
        IE.Quit
    The second page ("https://propaccess.trueautomation.com/clientdb/?cid=53"), if i just render this URL as the strUrl, then I can automate the 2nd page with this:
    'Having alot of trouble aapplying= this to child window
    '           |
    '           |
    '           |
    '           |
    '           |
    '           |
    '           |
    '           |
    '           V
    
    '-----------------------------------[ Owner Name ]---------------------------------------
     
        Set frm = doc.getElementById("propertySearchOptions_table0")
        frm.all("propertySearchOptions_ownerName").Value = "Owner Name"
    
    '-----------------------------------[ Tax Year ]-----------------------------------------
            
        Set frm = doc.getElementById("propertySearchOptions_rowTaxYear")
        frm.all("propertySearchOptions_taxyear").Value = ("2012")
    
    
    '-----------------------------------[ Submit Forms]---------------------------------------
    '
        Set frm = doc.getElementById("bottomOptions")
        frm.all("propertySearchOptions_search").Click
    
        Do Until Not IE.Busy: DoEvents: Loop
        Do Until IE.readyState = 4: DoEvents: Loop  
     
    End Sub

    Where I am totally stuck: I cannot seem to figure out how to get them to work together?? Once the child IE window comes into play, how do i reference it?

    Parent WIndow = "http://staging.trueautomation.com/ta/index.php/PropertyAccess_noscript"
    Child Window = "https://propaccess.trueautomation.com/clientdb/?cid=53"
    Ultimately the Goal Window = "https://propaccess.trueautomation.com/clientdb/SearchResults.aspx"

    Any help, advice or suggestions would be greatly appreciated. Thanks!

  2. #2
    Registered User
    Join Date
    02-02-2013
    Location
    texas
    MS-Off Ver
    Excel 2003/2010
    Posts
    59

    Re: VBA / Web Automation / Finding child IE Window:

    Anyone? referencing the IE child window?? lol

  3. #3
    Valued Forum Contributor
    Join Date
    05-21-2009
    Location
    Great Britain
    MS-Off Ver
    Excel 2003
    Posts
    550

    Re: VBA / Web Automation / Finding child IE Window:

    Use IE WithEvents and trap the NewWindow2 event, or loop through Shell.Windows looking for an IE object which matches something in the child window, e.g. URL, location name, or something in the document.body content, etc.
    Post responsibly. Search for excelforum.com

  4. #4
    Registered User
    Join Date
    02-02-2013
    Location
    texas
    MS-Off Ver
    Excel 2003/2010
    Posts
    59

    Re: VBA / Web Automation / Finding child IE Window:

    It took a while, but i eventually figured it out. Thanks though

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1