我使用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);
答案 0 :(得分:8)
IsAt
是方法 - 请将其命名为:
Assert.IsTrue(MyAccountPage.IsAt());