XML Http request into Excel

jamescooper

Well-known Member
Joined
Sep 8, 2014
Messages
834
So for this website: https://www.tesco.com/groceries/en-GB/products/268279288
The following code pulls the Price/price per unit etc.

Code:
Private Function getprices(ByVal URL As String) As Variant
Dim source As Object
Dim http As New XMLHTTP60, html As New HTMLDocument
Dim ret(1 To 5) As String
Dim elem As Object


    With http
        .Open "GET", URL, False
        .send
        html.body.innerHTML = .responseText
    End With


    Set elem = html.querySelector(".price-details--wrapper .value")


    If Not elem Is Nothing Then
        ret(1) = elem.innerText
    Else
        ret(1) = "N/A"
    End If


    Set elem = html.querySelector(".price-per-quantity-weight .value")


    If Not elem Is Nothing Then
        ret(2) = elem.innerText
    Else
        ret(2) = "N/A"
    End If


    Set elem = html.querySelector(".price-per-quantity-weight .weight")


    If Not elem Is Nothing Then
        ret(3) = elem.innerText
    Else
        ret(3) = "N/A"
    End If
    
    Set elem = html.querySelector(".promotions-wrapper.hidden-small.hidden-medium-small-only .offer-text")
       
       If Not elem Is Nothing Then
        ret(4) = elem.innerText
    Else
        ret(4) = "No"
    End If
   
    Set elem = html.querySelector(".promotions-wrapper.hidden-small.hidden-medium-small-only .dates")


       If Not elem Is Nothing Then
        ret(5) = elem.innerText
    Else
        ret(5) = "None"
    End If


    getprices = ret
  
End Function


Now trying to adapt to pull the price (78p) on this website and cannot seem to adapt it to suit when inspecting the element. Any ideas? Any literature on this would be great too thanks.

https://www.sainsburys.co.uk/shop/gb/groceries/bananas-grapes/sainsburys-loose-fairtrade-bananas

Code:
Private Function getprices(ByVal URL As String) As Variant


    Dim source As Object
    Dim http As New XMLHTTP60, html As New HTMLDocument
    Dim ret(1 To 1) As String
    
    With http
        .Open "GET", URL, False
        .send
        html.body.innerHTML = .responseText
    End With
    
    ret(1) = html.querySelector(".pricing .priceperunit").innerText
 
End Function
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Trying to use the query selector won't work because that element has a different value for each page. I referenced a parent element. This works testing with grapes and bananas.

Code:
Sub Main()
Dim bananas As String: bananas = "https://www.sainsburys.co.uk/shop/gb/groceries/bananas-grapes/sainsburys-loose-fairtrade-bananas"
Dim grapes As String: grapes = "https://www.sainsburys.co.uk/shop/gb/groceries/bananas-grapes/sainsburys-red-seedless-grapes-500g"

Debug.Print getprices(bananas)
Debug.Print getprices(grapes)
End Sub

Private Function getprices(ByVal URL As String) As Variant

Dim source As Object
Dim http As New XMLHTTP60, html As New HTMLDocument
Dim ret(1 To 1) As String

With http
    .Open "GET", URL, False
    .send
    html.body.innerHTML = .responseText
End With

ret(1) = html.querySelector("#content > div.section.productContent > div.pdp").innerText
sp = Split(ret(1), Chr(32))
For i = 0 To UBound(sp) - 1
    If InStr(sp(i), "/") > 0 Then getprices = sp(i): Exit Function
Next i
 
End Function
 
Upvote 0
This worked for me.
Code:
Private Function getprices(ByVal URL As String) As Variant


    Dim source As Object
    Dim http As New XMLHTTP60, html As New HTMLDocument
    Dim ret(1 To 1) As String
    
    With http
        .Open "GET", URL, False
        .send
        html.body.innerHTML = .responseText
    End With
    
    ret(1) = html.querySelector(".pricePerUnit").innerText
 
End Function
 
Upvote 0
Thanks both, Norie - that is great and I am learning a lot from you.

Do you know of any literature on this?
 
Upvote 0

Forum statistics

Threads
1,214,415
Messages
6,119,381
Members
448,888
Latest member
Arle8907

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top