1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Update Selenium.Support package

This commit is contained in:
Stepan Goremykin
2023-03-19 00:42:57 +01:00
committed by Mark McDowall
parent 951a9ade00
commit e4dde10a3f
3 changed files with 5 additions and 7 deletions
@@ -1,16 +1,15 @@
using System;
using System.Threading;
using OpenQA.Selenium;
using OpenQA.Selenium.Remote;
using OpenQA.Selenium.Support.UI;
namespace NzbDrone.Automation.Test.PageModel
{
public class PageBase
{
private readonly RemoteWebDriver _driver;
private readonly IWebDriver _driver;
public PageBase(RemoteWebDriver driver)
public PageBase(IWebDriver driver)
{
_driver = driver;
driver.Manage().Window.Maximize();