C# Class OpenQA.Selenium.Remote.Server.RemoteWebDriverServer

Handles requests from remote clients to perform automated tests.
Inheritance: RemoteServer
ファイルを表示 Open project: jimevans/strontium Class Usage Examples

Public Methods

Method Description
RemoteWebDriverServer ( int port, string path ) : System

Initializes a new instance of the RemoteWebDriverServer class using the specified port and relative path.

RemoteWebDriverServer ( int port, string path, Logger log ) : System

Initializes a new instance of the RemoteWebDriverServer class using the specified port, relative path, and logger.

Private Methods

Method Description
InitializeSessionManager ( ) : void
Instance_DriverRegistrationFailed ( object sender, DriverRegistrationFailedEventArgs e ) : void
RegisterDefaultDrivers ( ) : void
RemoteWebDriverServer ( int port, string path, CommandHandlerFactory handlerFactory, Logger log ) : System

Initializes a new instance of the RemoteWebDriverServer class using the specified port, relative path, and logger.

Method Details

RemoteWebDriverServer() public method

Initializes a new instance of the RemoteWebDriverServer class using the specified port and relative path.
public RemoteWebDriverServer ( int port, string path ) : System
port int The port to listen on.
path string The relative path to connect to.
return System

RemoteWebDriverServer() public method

Initializes a new instance of the RemoteWebDriverServer class using the specified port, relative path, and logger.
public RemoteWebDriverServer ( int port, string path, Logger log ) : System
port int The port to listen on.
path string The relative path to connect to.
log Logger A object describing how to log information about commands executed.
return System