1

我正在使用 FireFoxDriver、C#、NUnit 和 Selenium。

我的测试方法首先转到一个页面并执行一些操作,然后用户将被重定向到另一个页面。

如何验证是否发生了页面重定向?

this.FireFoxWebDriver.Navigate().GoToUrl(url);
// performing some actions
// todo: how to verify the page url now?

谢谢,

4

1 回答 1

4

啊,这么简单!

Assert.AreEqual(this.FireFoxWebDriver.Url, expectedRedirectUrl);

于 2012-03-02T12:35:20.187 回答