com.appium.entities.MobilePlatform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AppiumTestDistribution Show documentation
Show all versions of AppiumTestDistribution Show documentation
A tool run Android and iOS test in parallel across devices
package com.appium.entities;
/**
* Created by saikrisv on 2016/11/16.
*/
public enum MobilePlatform {
IOS("IOS"),
ANDROID("ANDROID");
public final String platformName;
MobilePlatform(String platformName) {
this.platformName = platformName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy