Table of Contents

Interface IOptions

Namespace
OpenQA.Selenium
Assembly
WebDriver.dll

Defines an interface allowing the user to set options on the browser.

public interface IOptions

Properties

Cookies

Gets an object allowing the user to manipulate cookies on the page.

ICookieJar Cookies { get; }

Property Value

ICookieJar

Window

Gets an object allowing the user to manipulate the currently-focused browser window.

IWindow Window { get; }

Property Value

IWindow

Remarks

"Currently-focused" is defined as the browser window having the window handle returned when IWebDriver.CurrentWindowHandle is called.

Methods

Timeouts()

Provides access to the timeouts defined for this driver.

ITimeouts Timeouts()

Returns

ITimeouts

An object implementing the ITimeouts interface.