如何使用页面对象模式Selenium C#声明页面标题

时间:2015-12-15 22:08:11

标签: c# selenium mstest

我使用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);

1 个答案:

答案 0 :(得分:8)

IsAt方法 - 请将其命名为:

Assert.IsTrue(MyAccountPage.IsAt());