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

io.appium.java_client.CanRememberExtensionPresence Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
package io.appium.java_client;

import org.openqa.selenium.UnsupportedCommandException;

public interface CanRememberExtensionPresence {
    /**
     * Verifies if the given extension is not present in the list of absent extensions
     * for the given driver instance.
     * This API is designed for private usage.
     *
     * @param extName extension name.
     * @return self instance for chaining.
     * @throws UnsupportedCommandException if the extension is listed in the list of absents.
     */
    ExecutesMethod assertExtensionExists(String extName);

    /**
     * Marks the given extension as absent for the given driver instance.
     * This API is designed for private usage.
     *
     * @param extName extension name.
     * @return self instance for chaining.
     */
    ExecutesMethod markExtensionAbsence(String extName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy