org.catools.web.metrics.CWebActionMetric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web.driver Show documentation
Show all versions of web.driver Show documentation
The Web Driver to be used in CATs projects for testing
The newest version!
package org.catools.web.metrics;
import lombok.Data;
import lombok.experimental.Accessors;
import org.catools.web.entities.CWebPageInfo;
import java.util.Date;
@Data
@Accessors(chain = true)
public class CWebActionMetric {
private String name;
private CWebPageInfo pageBeforeAction;
private CWebPageInfo pageAfterAction;
private Date actionTime;
private long duration;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy