On Error Not working

Macro_Nerd99

Board Regular
Joined
Nov 13, 2021
Messages
61
Office Version
  1. 365
"On error goTo" is not working on this code.
I'm trying to prevent a runtime error from showing if someone has an outdated or missing webdriver or any other error when starting chrome.
How do I fix this?

VBA Code:
Public Sub Open_New_Browser_Session(website As String)
  
       
         Set ch = New Selenium.ChromeDriver
     On Error GoTo Error_Handler:
         ch.Start
         ch.get website
        Exit Sub

Error_Handler:
        MsgBox "error opening site"
        End
        
End Sub
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
No Comma on the GoTo statement.
VBA Code:
Public Sub Open_New_Browser_Session(website As String)
  
       
         Set ch = New Selenium.ChromeDriver
     On Error GoTo Error_Handler
         ch.Start
         ch.get website
        Exit Sub

Error_Handler:
        MsgBox "error opening site"
        End
        
End Sub
 
Upvote 0
on the ch.start line


1689556865695.png
 
Upvote 0

Forum statistics

Threads
1,215,135
Messages
6,123,239
Members
449,093
Latest member
Vincent Khandagale

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