-fi.robotframework-seleniumlibrary.3.9.1.0.source-code.SeleniumLibrary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robotframework-seleniumlibrary Show documentation
Show all versions of robotframework-seleniumlibrary Show documentation
Java port of the Python based SeleniumLibrary for Robot Framework
public class SeleniumLibrary extends com.github.markusbernhardt.seleniumlibrary.SeleniumLibrary {
public SeleniumLibrary() {
super("5.0");
}
public SeleniumLibrary(String timeout) {
super(timeout);
}
public SeleniumLibrary(String timeout, String implicitWait) {
super(timeout, implicitWait);
}
public SeleniumLibrary(String timeout, String implicitWait, String keywordToRunOnFailure) {
super(timeout, implicitWait, keywordToRunOnFailure);
}
public SeleniumLibrary(String timeout, String implicitWait, String keywordToRunOnFailure, String screenshotPath) {
super(timeout, implicitWait, keywordToRunOnFailure, screenshotPath);
}
}