VBA chrome Web scrape by element ID (ID value to excel)

pecsenye

New Member
Joined
Jan 17, 2023
Messages
7
Hello,
I have a working code which code is writing Class data in Excel.

VBA Code:
Sub test()
Dim WPage As Object, myUrl As String
Set WPage = CreateObject("Selenium.CHRomedriver")

Sheets("Sheet_1").Select             
myUrl = "https://www.myurl.com"

WPage.Get myUrl
WPage.Wait 500

Set divs = WPage.FindElementsByClass("xxx")
For i = 1 To divs.Count
    Range("A1").Offset(i).Value = divs(i).Text
Next

WPage.Quit
Set WPage = Nothing
End Sub

This code is very good and works but but I see the Class data.
I'd like to modfy it (with ID). I'd like to Excel don't write the ID's data. I'd like only the ID.

For example source code:
<div id=aa_bb_qwer>
<div id=aa_bb_asdf>
<div id=aa_bb_yxcv>

I'd like to search every ID which starting aa_bb and take it to Excel.
For example: A1 cella = aa_bb_qwer, A2 cella = aa_bb_asdf, A3 cella = aa_bb_yxcv.

How can I do this?
Thanks for helping!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.

Forum statistics

Threads
1,214,926
Messages
6,122,305
Members
449,079
Latest member
juggernaut24

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