mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
13 lines
No EOL
304 B
C#
13 lines
No EOL
304 B
C#
using System.Linq;
|
|
using OpenQA.Selenium.Remote;
|
|
|
|
namespace NzbDrone.Web.UI.Automation.Fluent
|
|
{
|
|
public static class AssertionExtention
|
|
{
|
|
public static DriverAssertion Should(this RemoteWebDriver actualValue)
|
|
{
|
|
return new DriverAssertion(actualValue);
|
|
}
|
|
}
|
|
} |