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

com.nordstrom.automation.selenium.exceptions.OptionalElementNotAcquiredException Maven / Gradle / Ivy

Go to download

Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).

There is a newer version: 28.3.1-s4
Show newest version
package com.nordstrom.automation.selenium.exceptions;

import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;

/**
 * This exception is thrown upon failing to acquire the reference for an optional element prior to invoking a
 * {@link WebElement} method.
 */
public class OptionalElementNotAcquiredException extends NoSuchElementException {

    private static final long serialVersionUID = -1817241270199904930L;
    
    /**
     * Constructor for {@code not acquired} exception.
     * 
     * @param cause the cause of this exception
     */
    public OptionalElementNotAcquiredException(final NoSuchElementException cause) {
        super("Unable to acquire reference for optional element", cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy