com.infotel.seleniumrobot.grid.config.capability.MobileCapability Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seleniumRobot-grid Show documentation
Show all versions of seleniumRobot-grid Show documentation
Selenium grid extension for mobile testing
package com.infotel.seleniumrobot.grid.config.capability;
public class MobileCapability extends NodeCapability {
/**
*
*/
private static final long serialVersionUID = 1L;
protected static final String PLATFORM_NAME = "platformName";
protected static final String PLATFORM_VERSION = "platformVersion";
protected static final String DEVICE_NAME = "deviceName";
public MobileCapability() {
super();
setMaxInstances(1);
}
public String getPlatformName() {
return (String)get(PLATFORM_NAME);
}
public void setPlatformName(String platformName) {
put(PLATFORM_NAME, platformName);
}
public String getPlatformVersion() {
return (String)get(PLATFORM_VERSION);
}
public void setPlatformVersion(String platformVersion) {
put(PLATFORM_VERSION, platformVersion);
}
public String getDeviceName() {
return (String)get(DEVICE_NAME);
}
public void setDeviceName(String deviceName) {
put(DEVICE_NAME, deviceName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy