+ Reply to Thread
Results 1 to 4 of 4

Make VBA Code IE11 compatible

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    10-21-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    110

    Make VBA Code IE11 compatible

    Hi All,

    I have written following piece of code to scrap Quantities available for a product for each colors and return it as a string.

    So if the code works as expected following will be the output for URL
    Output: Avalon Light Brown: 10+ in Stock, Rich Tobacco Brown: 10+ in Stock

    Sub Call_Func()
        MsgBox Get_Qty_IAS("http://www.wayfair.com/Simpli-Home-Acadian-Entryway-Bench-QSI1070.html")
    End Sub
    
    Private Function Get_Qty_IAS(URL As String) As String
        Dim doc 'As HTMLDocument
        Dim Listings 'As IHTMLElementCollection
        Dim anchorElement 'As HTMLAnchorElement
        Dim NoOptions As Boolean
        Dim OptionsCt As Long, OptNo As Long
        Dim OptionsStr As String
        
        Dim objIE As Object
        Set objIE = CreateObject("InternetExplorer.Application")
        objIE.Visible = True
        
        objIE.Navigate (URL)
        bError = False
        
        Do
            DoEvents
            'Application.Wait Now + TimeSerial(0, 0, 1)
        Loop Until objIE.ReadyState = 4
        
        ' getting the HTML document
        Set doc = objIE.Document
        'Check for Options available like color or style
        NoOptions = True
        If doc.getElementsByClassName("js-visual-option-block visual_option_block").Length > 0 Then
            NoOptions = False
        End If
    
        If NoOptions = True Then
        ' No options are available
            Set Listings = doc.getElementsByClassName("stock_count textbox")
            If Listings.Length > 0 Then
                Get_Qty = Listings.Item(0).InnerText
            End If
            
        Else
            OptionsStr = ""
            OptionsCt = doc.getElementsByClassName("js-visual-option-hover visual_option_hover").Length
            ' Looping through the options
            For OptNo = 0 To OptionsCt - 1
                Set anchorElement = doc.getElementsByClassName("js-visual-option visual_option_wrap pos_rel fl").Item(OptNo)
                anchorElement.Click
                
                If InStr(1, Application.WorksheetFunction.Clean(doc.getElementsByClassName("js-visual-option visual_option_wrap pos_rel fl")(OptNo).InnerText), "add", vbTextCompare) = 0 Then
                    OptionsStr = OptionsStr & Application.WorksheetFunction.Clean(doc.getElementsByClassName("js-visual-option visual_option_wrap pos_rel fl")(OptNo).InnerText) & ": "
                Else
                    OptionsStr = OptionsStr & Left(Application.WorksheetFunction.Clean(doc.getElementsByClassName("js-visual-option visual_option_wrap pos_rel fl")(OptNo).InnerText), InStr(1, Application.WorksheetFunction.Clean(doc.getElementsByClassName("js-visual-option visual_option_wrap pos_rel fl")(OptNo).InnerText), "add", vbTextCompare) - 1) & ": "
                End If
                
                Set Listings = doc.getElementsByClassName("stock_count textbox")
                OptionsStr = OptionsStr & Listings.Item(0).InnerText & ", "
            Next
            Get_Qty_IAS = Left(OptionsStr, Len(OptionsStr) - 2)
        End If
    End Function
    It works very good in IE10, but not in IE11 unfortunately. Can anybody please help me on this?

    Thanks,
    Tejas

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Make VBA Code IE11 compatible

    What problems do you have with the code when you use IE11?
    If posting code please use code tags, see here.

  3. #3
    Forum Contributor
    Join Date
    10-21-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    110

    Re: Make VBA Code IE11 compatible

    @Norie,

    Thank you for looking into this.

    The function returns me blank string most of the times

  4. #4
    Forum Contributor
    Join Date
    10-21-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    110

    Re: Make VBA Code IE11 compatible

    Anybody to help me on this please?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Making code written in 32-bit vba compatible with 64-bit vba
    By blh in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-18-2014, 09:32 AM
  2. Making code 32 bit and 64 bit compatible
    By manofcheese in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-06-2014, 12:11 PM
  3. Make the Macro Excel-2000 Compatible
    By Tejas.T in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 10-21-2012, 12:31 PM
  4. Replies: 2
    Last Post: 09-22-2008, 08:10 AM
  5. how to write a code in VB6 compatible to all Excel Versions
    By rajesh_red1 in forum Excel General
    Replies: 0
    Last Post: 01-11-2005, 08:45 AM

Tags for this Thread

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