Backend/e-suite.Automation.UITests/ESuite.UI.E2E/Pages/HomePage.cs
2026-01-20 21:50:10 +00:00

21 lines
361 B
C#

using OpenQA.Selenium;
namespace ESuite.UI.E2E.Pages
{
public class HomePage
{
private readonly IWebDriver driver;
// Constructor to initialize the driver
public HomePage(IWebDriver driver)
{
this.driver = driver;
}
// Page elements
// Page actions
}
}