C# Class OpenQA.Selenium.Speed

Represents the speed with which actions are executed in the browser.
显示文件 Open project: epall/selenium

Public Properties

Property Type Description
Fast Speed
Medium Speed
Slow Speed

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified Object is equal to the current Object.

FromString ( string speedName ) : Speed

Creates a Speed object from its string description.

GetHashCode ( ) : int

Serves as a hash function for a particular type.

Private Methods

Method Description
Speed ( string description, int timeout ) : System

Method Details

Equals() public method

Determines whether the specified Object is equal to the current Object.
public Equals ( object obj ) : bool
obj object The Object to compare with the /// current Object.
return bool

FromString() public static method

Creates a Speed object from its string description.
public static FromString ( string speedName ) : Speed
speedName string The description of the speed to create.
return Speed

GetHashCode() public method

Serves as a hash function for a particular type.
public GetHashCode ( ) : int
return int

Property Details

Fast public_oe static_oe property

Gets a fast speed.
public static Speed,OpenQA.Selenium Fast
return Speed

Medium public_oe static_oe property

Gets a medium speed.
public static Speed,OpenQA.Selenium Medium
return Speed

Slow public_oe static_oe property

Gets a slow speed.
public static Speed,OpenQA.Selenium Slow
return Speed