Initializes a new instance of the RemoteDriver class using the specified host, user name, password and port number.
            
 
    Namespace: 
   SmartBear.TestLeft
    Assembly:
   SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
 Syntax
Syntaxpublic RemoteDriver(
	string host,
	string userName,
	string password,
	int port = 2377
)
Public Sub New ( 
	host As String,
	userName As String,
	password As String,
	Optional port As Integer = 2377
)
Dim host As String
Dim userName As String
Dim password As String
Dim port As Integer
Dim instance As New RemoteDriver(host, userName, 
	password, port)
public:
RemoteDriver(
	String^ host, 
	String^ userName, 
	String^ password, 
	int port = 2377
)
Parameters
- host
- Type: SystemString
 The IP address or host name.
- userName
- Type: SystemString
 The user name in the format "Domain\Username".
- password
- Type: SystemString
 The user password.
- port (Optional)
- Type: SystemInt32
 The port number.
 See Also
See Also