'How to open default browser from VBA using Selenium Basic

I want to open the default browser in windows using excel VBA using Selenium BASIC. below is code i am opening the chrome browser. but i want to open any browser that defaulted in the windows system.

Dim driver As New WebDriver
            driver.Start "chrome"
            driver.Get url
        
        Url = driver.Url
        driver.Close


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source