Selinium and chromedriver

SQUIDD

Well-known Member
Joined
Jan 2, 2009
Messages
2,104
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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
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,215,632
Messages
6,125,913
Members
449,274
Latest member
mrcsbenson

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