com.appium.utils.HostArtifact 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.utils;
import java.util.Map;
public class HostArtifact {
private final Map artifactsByType;
private String host;
HostArtifact(String host, Map artifactsByType) {
this.host = host;
this.artifactsByType = artifactsByType;
}
public String getArtifactPath(String type) {
return artifactsByType.get(type);
}
public String getHost() {
return host;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy