Hello,
Essentially I have a script that is ran with these beginning instructions because it is necessary for what is being tested:
Dim baseState AsNew BrowserBaseState(BrowserType.GoogleChrome, "website path")
baseState.CommandLineArguments = "-disable-print-preview"
baseState.Execute
I would like to be able to have a switch mechanism so I am able to use the same script and choose a different browser at the select browser stage (chrome Firefox etc) and at runtime I am able to execute that browser that was chosen. I do not know if the browser you select at the select browser dialog has a name so I'm able to make that call in my script to make a 'switch' call.