com.version1.webdriver.configuration.JmxConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-java-test-automation Show documentation
Show all versions of selenium-java-test-automation Show documentation
A simple Selenium framework offering externalised configuration, a good selection of libraries for supporting
test data, simple WebDriver browser binary resolution and an opinionated approach for WebDriver test design.
package com.version1.webdriver.configuration;
import com.fasterxml.jackson.annotation.JsonProperty;
public class JmxConfig {
private boolean isEnabled = false;
public boolean isEnabled() {
return isEnabled;
}
@JsonProperty("enabled")
public void setEnabled(boolean enabled) {
isEnabled = enabled;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy