Код: Выделить всё
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class TestStuff {
private static final String FIREFOX_DRIVER_PATH = System.getProperty("user.dir") + "\\geckodriver.exe";
private static WebDriver driver;
public static void main(String[] args){
System.setProperty("webdriver.gecko.driver", FIREFOX_DRIVER_PATH);
driver = new FirefoxDriver();
driver.get("https://freetestdata.com/wp-content/uploads/2021/09/Free_Test_Data_100KB_PDF.pdf");
}
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... h-selenium
Мобильная версия