Add project files.

This commit is contained in:
2022-01-26 20:15:57 +01:00
parent 7d4796fa9f
commit 74cb6f043a
15 changed files with 356 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using EATestFramework.Driver;
using Microsoft.Extensions.DependencyInjection;
namespace EATestFramework
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.UseWebDriverInitializer(BrowserType.Firefox);
services.AddScoped<IBrowserDriver, BrowserDriver>();
services.AddScoped<IDriverFixture, DriverFixture>();
}
}
}