All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ats.tools.report.utils.HtmlReportActionErrors Maven / Gradle / Ivy

The newest version!
package com.ats.tools.report.utils;

public enum HtmlReportActionErrors {

	ELEMENT_NOT_FOUND(-1), ELEMENT_NOT_VISIBLE(-2),ELEMENT_NOT_INTERACTABLE(-3);

	private int errorCode;

	HtmlReportActionErrors(int errorCode) {
		this.errorCode = errorCode;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy