You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instruction example in case of our SpecFlow-based template:
Add CustomBrowserFactory
Add respective nuget package of driver e.g. Selenium.WebDriver.ChromeDriver
Add hook to be executed before tests:
[BeforeTestRun(Order = 0)]
public static void ConfigureBrowserFactory()
{
AqualityServices.BrowserFactory = new CustomBrowserFactory(
AqualityServices.Get(),
AqualityServices.Get(),
AqualityServices.Get(),
AqualityServices.LocalizedLogger);
}