Configure Browser In Code
Apart from manually configuring each of the browsers for test execution this could be also accomplished in code.
Testing Framework / Write Tests in Code / Intermediate Topics
New to Telerik Test Studio? Download free 30-day trial
Apart from manually configuring each of the browsers for test execution this could be also accomplished in code.
//declare string variable to write possible errors in
string error;
// to configure FireFox
Manager.ConfigureBrowser(BrowserType.FireFox, out error);
// to configure Chrome
Manager.ConfigureBrowser(BrowserType.Chrome, out error);
// to configure IE
Manager.ConfigureBrowser(BrowserType.InternetExplorer, out error);
// to configure Safari
Manager.ConfigureBrowser(BrowserType.Safari, out error);
// to configure Edge
Manager.ConfigureBrowser(BrowserType.MicrosoftEdge, out error);
Dim error As String
Manager.ConfigureBrowser(BrowserType.FireFox, error)
Manager.ConfigureBrowser(BrowserType.Chrome, error)
Manager.ConfigureBrowser(BrowserType.InternetExplorer, error)
Manager.ConfigureBrowser(BrowserType.Safari, error)
Manager.ConfigureBrowser(BrowserType.MicrosoftEdge, error)
Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.