C# 클래스 OpenQA.Selenium.Remote.Server.CommandHandlers.WebDriverCommandHandler

Base class for handling all DriverCommand values where the URL specifies a session ID. In other words, the URL must contain "/session/{sessionId}/".
상속: CommandHandler
파일 보기 프로젝트 열기: jimevans/strontium

공개 메소드들

메소드 설명
ToString ( ) : string

Returns a string representing the description of this CommandHandler.

보호된 메소드들

메소드 설명
GetLocator ( string mechanism, string findValue ) : By

Gets a By object to be used to locate elements on the page.

WebDriverCommandHandler ( string>.Dictionary locatorParameters, object>.Dictionary parameters ) : System

Initializes a new instance of the WebDriverCommandHandler class.

WrapElement ( IWebElement element ) : object>.Dictionary

Wraps an IWebElement for transmission back to a remote client.

메소드 상세

GetLocator() 보호된 정적인 메소드

Gets a By object to be used to locate elements on the page.
protected static GetLocator ( string mechanism, string findValue ) : By
mechanism string The mechanism to use, such as ID, name or link text to find elements.
findValue string The value to match in finding elements.
리턴 By

ToString() 공개 메소드

Returns a string representing the description of this CommandHandler.
public ToString ( ) : string
리턴 string

WebDriverCommandHandler() 보호된 메소드

Initializes a new instance of the WebDriverCommandHandler class.
protected WebDriverCommandHandler ( string>.Dictionary locatorParameters, object>.Dictionary parameters ) : System
locatorParameters string>.Dictionary A containing the parameters used to match a resource in the URL.
parameters object>.Dictionary A containing the parameters used to operate on the resource.
리턴 System

WrapElement() 보호된 메소드

Wraps an IWebElement for transmission back to a remote client.
protected WrapElement ( IWebElement element ) : object>.Dictionary
element IWebElement The to wrap for transmission.
리턴 object>.Dictionary