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

com.applitools.eyes.IEyesBase Maven / Gradle / Ivy

The newest version!
package com.applitools.eyes;

import java.net.URI;

public interface IEyesBase {

    String getApiKey();

    URI getServerUrl();

    void setIsDisabled(Boolean isDisabled);

    Boolean getIsDisabled();

    String getFullAgentId();

    boolean getIsOpen();

    void setLogHandler(LogHandler logHandler);

    LogHandler getLogHandler();

    Logger getLogger();

    void addProperty(String name, String value);

    void clearProperties();

    TestResults abortIfNotClosed();

    void closeAsync();

    void abortAsync();

    TestResults abort();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy