Table of Contents

Class MobileEndpointInfo

Namespace
Ranorex.Core
Assembly
Ranorex.Plugin.Mobile.dll

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

name string

Name of the endpoint.

platform string

Platform of the endpoint. [Android, Ios]

type string

Type of the endpoint. [USB, WLAN, Emulator]

address string

Address 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

name string

Name of the endpoint.

platform string

Platform of the endpoint. [Android, Ios]

type string

Type of the endpoint. [USB, WLAN, Emulator]

address string

Address of the endpoint.

devicePort int

Device port of the endpoint.

discoveryPort int

Discovery port of the endpoint.

Properties

Address

Endpoint address.

public string Address { get; }

Property Value

string

DevicePort

Device port.

public int DevicePort { get; }

Property Value

int

DiscoveryPort

Discovery port.

public int DiscoveryPort { get; }

Property Value

int

Name

Name of the endpoint.

public string Name { get; }

Property Value

string

Platform

Mobile platform name [Android or Ios].

public string Platform { get; }

Property Value

string

Type

Connection type [USB, WLAN or Emulator].

public string Type { get; }

Property Value

string