com.github.nscuro.wdm.Platform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdriver-manager Show documentation
Show all versions of webdriver-manager Show documentation
Simplifying WebDriver instantiation
package com.github.nscuro.wdm;
import javax.annotation.Nonnull;
import java.util.Set;
public interface Platform {
@Nonnull
String getName();
@Nonnull
Os getOs();
@Nonnull
Set getArchitectures();
}