![JAR search and dependency download from the Maven repository](/logo.png)
com.g2forge.gearbox.browser.IBrowser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gb-browser Show documentation
Show all versions of gb-browser Show documentation
Library for browsing websites, screen scraping & automation.
package com.g2forge.gearbox.browser;
import java.util.List;
import org.openqa.selenium.By;
import com.g2forge.alexandria.java.close.ICloseable;
import com.g2forge.gearbox.browser.operation.IOperationBuilder;
public interface IBrowser extends ICloseable, IBrowsable {
public Object executeJavascript(String script, Object... args);
public IElement find(By by);
public T find(By by, Class type);
public List findAll(By by);
public List findAll(By by, Class type);
public String getTitle();
public IBrowser go(String url);
@Override
public IOperationBuilder extends IBrowser> operation();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy