Is there a way to create a specific web Crawler with VBA

Edovon

New Member
Joined
Sep 9, 2019
Messages
7
Office Version
  1. 2019
Platform
  1. Windows
Hello.
I'm trying to develop a web crawler with VBA which helps me download data from the specific webpage , what i want to do is make in VBA to upload a excel file with product numbers and then to crawl , recently i developed a very easy Crawler which is not a lot specific i have the code , and if someone could change it and make it for specific crawler.
I want from this page : 3M 1776 12" X 12"-6/PK 3M (TC) | Tapes, Adhesives, Materials | DigiKey to crawl only the Product Attributes.


Below the Photo is the Code.



crawl2.PNG


Sub CountryPopList()
Dim ieObj As InternetExplorer
Dim htmlEle As IHTMLElement
Dim i As Integer

i = 1

Set ieObj = New InternetExplorer
ieObj.Visible = True
ieObj.navigate "List of countries and dependencies by population - Wikipedia"

Application.Wait Now + TimeValue("00:00:05")

For Each htmlEle In ieObj.document.getelementbyclassname("wikitable")(0).getelementsbytagename("tr")
With ActiveSheet
.Range("A" & i).Value = htmlEle.Children(0).textContent
.Range("B" & i).Value = htmlEle.Children(1).textContent
.Range("C" & i).Value = htmlEle.Children(2).textContent
.Range("D" & i).Value = htmlEle.Children(3).textContent
.Range("E" & i).Value = htmlEle.Children(4).textContent
End With

i = i + 1

Next htmlEle

End Sub
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
These are the product codes off manufacturer , and those codes i will add in list that i upload , and then VBA to crawl.




771-9975/006-102
894-8992/023-307
771-8985/006-303
774-9993/007-302
891-8982/016-601
891-8992/015-502
771-9973/017-201
771-9973/017-302
774-9994/016-701
771-9994/016-601
771-8982/017-403
771-9994/005-505
891-8992/006-207
771-9994/005-605
771-9995/006-501
771-8985/006-404
771-9994/006-207
771-6993/006-702
771-9995/006-803
891-8992/006-602
891-8993/006-705
771-8985/007-503
771-8992/007-101
 
Upvote 0

Forum statistics

Threads
1,214,877
Messages
6,122,051
Members
449,064
Latest member
scottdog129

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