org.fluentlenium.assertj.custom.HtmlConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluentlenium-assertj Show documentation
Show all versions of fluentlenium-assertj Show documentation
AssertJ Extension for FluentLenium
package org.fluentlenium.assertj.custom;
/**
* Contains constants for working with HTML elements and attributes.
*/
final class HtmlConstants {
static final String CLASS_DELIMITER = " ";
static final String CLASS_ATTRIBUTE = "class";
private HtmlConstants() {
//Utility class
}
}