Lidarr/NzbDrone.Web.UI.Test/Fluent/DriverAssertion.cs

22 lines
440 B
C#
Raw Normal View History

2011-12-19 05:08:36 +00:00
using System.Linq;
using FluentAssertions;
using OpenQA.Selenium.Remote;
namespace NzbDrone.Web.UI.Automation.Fluent
{
public class DriverAssertion
{
private readonly RemoteWebDriver _driver;
public DriverAssertion(RemoteWebDriver driver)
{
_driver = driver;
}
public void BeNzbDronePage()
{
_driver.Title.Should().EndWith("NzbDrone");
}
}
}