如何使用页面对象模式SeleniumC#断言页面标题

本文关键字:断言 SeleniumC# 标题 对象 何使用 面对 模式 | 更新日期: 2023-09-27 18:26:52

我正在使用Selenium C#和MSTest的页面对象模式,我想通过用实际页面标题断言预期的页面标题来断言我已经到达了正确的页面。我有以下代码,但它不起作用:

框架:

public class MyAccountPage
{
public const string MyAccountPageTitle = "My Account";
public static bool IsAt()
{
return Driver.Instance.Title == MyAccountPageTitle;
}

测试:

Assert.IsTrue(MyAccountPage.IsAt);

如何使用页面对象模式SeleniumC#断言页面标题

IsAt是一个方法-调用它:

Assert.IsTrue(MyAccountPage.IsAt());