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

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

There is a newer version: 5.76.0
Show newest version
package com.applitools.eyes;

import java.net.URI;

public interface IEyesBase {

    String APPLITOOLS_PUBLIC_CLOUD_URL= "https://eyesapi.applitools.com";

    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