I am trying to pull the following HTML information from the following webpage (and would hope to duplicate this effort to pull all of the prices on the page):
https://www.ebay.com/sch/i.html?_from=R40&_nkw=ralph+lauren&_sacat=1059&LH_TitleDesc=0&_dmd=1&rt=nc
How would I do this? I have the following code already, and would like to pull the highlighted information (Price & Listing Title) in the screenshots below
https://www.ebay.com/sch/i.html?_from=R40&_nkw=ralph+lauren&_sacat=1059&LH_TitleDesc=0&_dmd=1&rt=nc
How would I do this? I have the following code already, and would like to pull the highlighted information (Price & Listing Title) in the screenshots below
Code:
[FONT='inherit']Sub eBayPull()
Set objIE = CreateObject("InternetExplorer.Application")
WebSite = "https://www.ebay.com/sch/i.html_from=R40&_nkw=ralph+lauren&_sacat=1059&LH_TitleDesc=0&_dmd=1&rt=nc"With objIE
.Visible = True
.navigate WebSite
Do While .Busy Or .READYSTATE <> 4
DoEvents
Loop
End With
End Sub[/FONT]