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