导航()C
可以直接浏览浏览器,例如使用所有浏览器上提供的标准工具栏命令:
你可以通过在驱动程序上调用 Navigate()
来创建导航对象:
IWebDriver driver
INavigation navigation = driver.Navigate();
导航对象允许你执行许多操作来浏览 Web 上的浏览器:
//like pressing the back button
navigation.Back();
//like pressing the forward button on a browser
navigation.Forward();
//navigate to a new url in the current window
navigation.GoToUrl("www.stackoverflow.com");
//Like pressing the reload button
navigation.Refresh();