Class MobileEndpointInfo
Information object to define an WebDriver endpoint.
public class MobileEndpointInfo
- Inheritance
-
MobileEndpointInfo
- Inherited Members
Constructors
MobileEndpointInfo(string, string, string, string)
Creates a new MobileEndpointInfo.
public MobileEndpointInfo(string name, string platform, string type, string address)
Parameters
namestringName of the endpoint.
platformstringPlatform of the endpoint. [Android, Ios]
typestringType of the endpoint. [USB, WLAN, Emulator]
addressstringAddress of the endpoint.
MobileEndpointInfo(string, string, string, string, int, int)
Creates a new MobileEndpointInfo.
public MobileEndpointInfo(string name, string platform, string type, string address, int devicePort, int discoveryPort)
Parameters
namestringName of the endpoint.
platformstringPlatform of the endpoint. [Android, Ios]
typestringType of the endpoint. [USB, WLAN, Emulator]
addressstringAddress of the endpoint.
devicePortintDevice port of the endpoint.
discoveryPortintDiscovery port of the endpoint.
Properties
Address
Endpoint address.
public string Address { get; }
Property Value
DevicePort
Device port.
public int DevicePort { get; }
Property Value
DiscoveryPort
Discovery port.
public int DiscoveryPort { get; }
Property Value
Name
Name of the endpoint.
public string Name { get; }
Property Value
Platform
Mobile platform name [Android or Ios].
public string Platform { get; }
Property Value
Type
Connection type [USB, WLAN or Emulator].
public string Type { get; }