16 lines
413 B
C#
16 lines
413 B
C#
using OpenQA.Selenium;
|
|
|
|
namespace AOW4.SeleniumTests.Pages;
|
|
|
|
public class HomePage
|
|
{
|
|
private readonly IWebDriver _driver;
|
|
public HomePage(IWebDriver driver) => _driver = driver;
|
|
|
|
public bool IsAt()
|
|
{
|
|
var url = _driver.Url ?? string.Empty;
|
|
return url.EndsWith("/") || url.Contains("/index", System.StringComparison.OrdinalIgnoreCase) || _driver.PageSource.Contains("Home");
|
|
}
|
|
}
|