Fix fullscreen automation screenshots

This commit is contained in:
Bogdan
2025-06-08 15:27:13 +03:00
parent c82f904d49
commit aafadb6111
2 changed files with 6 additions and 6 deletions
@@ -7,12 +7,11 @@ namespace NzbDrone.Automation.Test.PageModel
{
public class PageBase
{
private readonly WebDriver _driver;
private readonly IWebDriver _driver;
public PageBase(WebDriver driver)
public PageBase(IWebDriver driver)
{
_driver = driver;
driver.Manage().Window.Maximize();
}
public IWebElement FindByClass(string className, int timeout = 5)