Moved earlier extensionclasses together

This commit is contained in:
2022-01-26 20:43:17 +01:00
parent 1d151909d5
commit 021ac9e86b
4 changed files with 6 additions and 3 deletions

View File

@ -1,19 +0,0 @@
using EATestFramework.Settings;
using Microsoft.Extensions.DependencyInjection;
namespace EATestFramework.Driver;
public static class WebDriverInitializerExtension
{
public static IServiceCollection UseWebDriverInitializer(
this IServiceCollection services,
BrowserType browserType)
{
services.AddSingleton(new TestSettings
{
BrowserType = browserType
});
return services;
}
}