C# 클래스 OpenQA.Selenium.IE.InternetExplorerDriver.InternetExplorerOptions

Provides a mechanism for setting options needed for the driver during the test.
상속: IOptions
파일 보기 프로젝트 열기: epall/selenium

공개 메소드들

메소드 설명
AddCookie ( Cookie cookie ) : void

Method for creating a cookie in the browser.

DeleteAllCookies ( ) : void

Delete All Cookies that are present in the browser.

DeleteCookie ( Cookie cookie ) : void

Delete a cookie in the browser that is the.

DeleteCookieNamed ( string name ) : void

Delete the cookie by passing in the name of the cookie.

GetCookieNamed ( string name ) : Cookie

Method for returning a getting a cookie by name.

GetCookies ( ) : ReadOnlyCollection

Method for getting a Collection of Cookies that are present in the browser.

InternetExplorerOptions ( InternetExplorerDriver driver ) : System

Initializes a new instance of the InternetExplorerOptions class.

비공개 메소드들

메소드 설명
DeleteCookieByPath ( Cookie cookie ) : void
GetCurrentUri ( ) : Uri
RecursivelyDeleteCookieByDomain ( Cookie cookie ) : void

메소드 상세

AddCookie() 공개 메소드

Method for creating a cookie in the browser.
public AddCookie ( Cookie cookie ) : void
cookie Cookie that represents a cookie in the browser.
리턴 void

DeleteAllCookies() 공개 메소드

Delete All Cookies that are present in the browser.
public DeleteAllCookies ( ) : void
리턴 void

DeleteCookie() 공개 메소드

Delete a cookie in the browser that is the.
public DeleteCookie ( Cookie cookie ) : void
cookie Cookie An object that represents a copy of the cookie that needs to be deleted.
리턴 void

DeleteCookieNamed() 공개 메소드

Delete the cookie by passing in the name of the cookie.
public DeleteCookieNamed ( string name ) : void
name string The name of the cookie that is in the browser.
리턴 void

GetCookieNamed() 공개 메소드

Method for returning a getting a cookie by name.
public GetCookieNamed ( string name ) : Cookie
name string name of the cookie that needs to be returned.
리턴 Cookie

GetCookies() 공개 메소드

Method for getting a Collection of Cookies that are present in the browser.
public GetCookies ( ) : ReadOnlyCollection
리턴 ReadOnlyCollection

InternetExplorerOptions() 공개 메소드

Initializes a new instance of the InternetExplorerOptions class.
public InternetExplorerOptions ( InternetExplorerDriver driver ) : System
driver InternetExplorerDriver Instance of the driver currently in use.
리턴 System