File tree Expand file tree Collapse file tree
Tests/CSF.Screenplay.Selenium.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 <PackageReference Include =" Selenium.Support" Version =" 4.15.0" />
2020 <PackageReference Include =" Microsoft.Extensions.Configuration" Version =" 8.0.0" />
2121 <PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 8.0.0" />
22+ <PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 8.0.0" />
2223 <PackageReference Include =" Moq" Version =" 4.20.70" />
2324 <PackageReference Include =" AutoFixture.NUnit3" Version =" 4.18.1" />
2425 <PackageReference Include =" AutoFixture.AutoMoq" Version =" 4.18.1" />
Original file line number Diff line number Diff line change 11using CSF . Extensions . WebDriver ;
22using Microsoft . Extensions . Configuration ;
33using Microsoft . Extensions . DependencyInjection ;
4+ using Microsoft . Extensions . Logging ;
45
56namespace CSF . Screenplay . Selenium ;
67
@@ -12,6 +13,7 @@ public Screenplay GetScreenplay()
1213 {
1314 services . AddSingleton ( GetConfiguration ( ) ) ;
1415 services . AddWebDriverFactory ( ) ;
16+ services . AddLogging ( l => l . AddConsole ( ) ) ;
1517
1618 services . AddTransient < Webster > ( ) ;
1719 services . AddTransient < Pattie > ( ) ;
You can’t perform that action at this time.
0 commit comments