blob: 1eed15820ac3ed3f9006cbd076464442bd6eec3a [file] [log] [blame]
// <copyright file="INavigation.cs" company="WebDriver Committers">
// Copyright 2007-2011 WebDriver committers
// Copyright 2007-2011 Google Inc.
// Portions copyright 2011 Software Freedom Conservancy
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
using System;
using System.Text;
namespace OpenQA.Selenium
{
/// <summary>
/// Defines an interface allowing the user to access the browser's history and to
/// navigate to a given URL.
/// </summary>
public interface INavigation
{
/// <summary>
/// Move back a single entry in the browser's history.
/// </summary>
void Back();
/// <summary>
/// Move a single "item" forward in the browser's history.
/// </summary>
/// <remarks>Does nothing if we are on the latest page viewed.</remarks>
void Forward();
/// <summary>
/// Load a new web page in the current browser window.
/// </summary>
/// <param name="url">The URL to load. It is best to use a fully qualified URL</param>
/// <remarks>
/// Calling the <see cref="GoToUrl(System.String)"/> method will load a new web page in the current browser window.
/// This is done using an HTTP GET operation, and the method will block until the
/// load is complete. This will follow redirects issued either by the server or
/// as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
/// for any duration of time, it is best to wait until this timeout is over, since
/// should the underlying page change while your test is executing the results of
/// future calls against this interface will be against the freshly loaded page.
/// </remarks>
void GoToUrl(string url);
/// <summary>
/// Load a new web page in the current browser window.
/// </summary>
/// <param name="url">The URL to load.</param>
/// <remarks>
/// Calling the <see cref="GoToUrl(System.Uri)"/> method will load a new web page in the current browser window.
/// This is done using an HTTP GET operation, and the method will block until the
/// load is complete. This will follow redirects issued either by the server or
/// as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
/// for any duration of time, it is best to wait until this timeout is over, since
/// should the underlying page change while your test is executing the results of
/// future calls against this interface will be against the freshly loaded page.
/// </remarks>
void GoToUrl(Uri url);
/// <summary>
/// Refreshes the current page.
/// </summary>
void Refresh();
}
}