Instead of selecting a browser for replay at the start of a test, you might require to start a specific browser out of the test script during replay.
Using the BrowserBaseState class to start a browser out of a test script ensures that the browser that is specified by the Executable property is running and ready for testing. The base state additionally navigates to the URL that is specified by the Url property and brings the browser to the front.
' VB . NET code Dim MyBrowserBaseState As New BrowserBaseState(BrowserType.InternetExplorer, "http://www.borland.com") MyBrowserBaseState.Execute()