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

com.shaft.gui.internal.exceptions.MultipleElementsFoundException Maven / Gradle / Ivy

Go to download

SHAFT is a unified test automation engine. Powered by best-in-class frameworks, SHAFT provides a wizard-like syntax to drive your automation efficiently, maximize your ROI, and minimize your learning curve. Stop reinventing the wheel. Upgrade now!

There is a newer version: 8.2.20240402
Show newest version
package com.shaft.gui.internal.exceptions;

import org.openqa.selenium.WebDriverException;

public class MultipleElementsFoundException extends WebDriverException {
    public MultipleElementsFoundException() {
        super();
    }

    public MultipleElementsFoundException(String message) {
        super(message);
    }

    public MultipleElementsFoundException(Throwable cause) {
        super(cause);
    }

    public MultipleElementsFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy