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

Logs

Gets an object allowing the user to examine the logs for this driver instance.

ILogs Logs { get; }

Property Value

ILogs

Network

Gets an object allowing the user to manage network communication by the browser.

INetwork Network { get; }

Property Value

INetwork

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.