19 lines
412 B
C#
19 lines
412 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", StringComparison.OrdinalIgnoreCase) || _driver.PageSource.Contains("Counter");
|
|
}
|
|
} |