com.testvagrant.optimus.core.models.TargetDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-lite Show documentation
Show all versions of optimus-lite Show documentation
Optimus Lite API to manage test devices and create appium driver based on platform
package com.testvagrant.optimus.core.models;
import com.testvagrant.optimus.core.models.mobile.DeviceType;
import lombok.*;
import java.io.Serializable;
@Getter
@Setter
@Builder
public class TargetDetails implements Serializable {
private String name;
private OptimusSupportedPlatforms platform;
private String platformVersion;
private DeviceType runsOn;
private String udid;
@Override
public String toString() {
return "{"
+ "\"deviceName\":\""
+ name
+ "\""
+ ", \"platform\":\""
+ platform
+ "\""
+ ", \"platformVersion\":\""
+ platformVersion
+ "\""
+ ", \"runsOn\":\""
+ runsOn
+ "\""
+ ", \"udid\":\""
+ udid
+ "\""
+ "}}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy