pub trait UdidCapable: AppiumCapability {
    // Provided method
    fn udid(&mut self, udid: &str) { ... }
}
Expand description

Capabilities for drivers that are used to run test on a device.

Provided Methods§

source

fn udid(&mut self, udid: &str)

Device id.

Android id can be retrieved by using ADB (adb devices). For iOS, it’s the phone’s serial number.

Implementors§