Selinium and chromedriver

SQUIDD

Well-known Member
Joined
Jan 2, 2009
Messages
2,138
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
Hi

So trying to use Selenium.ChromeDriver to simply get the name of the greyhound "Closed Door" from the page below.

Just cannot work it out. Any help here would be great.

Greyhound Bet | Greyhound Betting Web App from the Racing Post

VBA Code:
Sub OPEN_BROWSER()
    Set MYBROWSER = New Selenium.ChromeDriver
    MYBROWSER.Start
    MYBROWSER.Get "https://greyhoundbet.racingpost.com/#results-dog/race_id=1850305&dog_id=548599&r_date=2021-08-04&track_id=1&r_time=10:53"
    b = MYBROWSER.FindElementsByClass("ghName").Text
    c = MYBROWSER.FindElementsByClass("c4")(2).Text 'example that gets data from the table
'MYBROWSER.Close
End Sub
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
never mind

b = MYBROWSER.FindElementByClass("ghName").Text

remvoved the "s" from elements to be element

works fine

dave
 
Upvote 0
Solution

Forum statistics

Threads
1,225,754
Messages
6,186,826
Members
453,377
Latest member
JoyousOne

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