Загрузка javascript изображения с помощью HtmlUnit - PullRequest
0 голосов
/ 06 февраля 2020

Как мне go загрузить файл, сгенерированный в Листовка easyPrint , используя кнопку HtmlUnit?

Я пытаюсь сделать это так:

public static void main(String[] args) {
        try{
            WebClient webClient = new WebClient();
            HtmlPage test = webClient.getPage("http://rowanwins.github.io/leaflet-easyPrint/");
            webClient.waitForBackgroundJavaScript(5000);

            final DomElement button = test.getFirstByXPath("/html/body/button");
            final InputStream image = button.click().getWebResponse().getContentAsStream();
            System.out.println(image);

            File file = new File("/home/josue/Basis/STS4/map.png");
            copyInputStreamToFile(image, file);
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }

private static void copyInputStreamToFile(InputStream inputStream, File file) 
        throws IOException {

        try (FileOutputStream outputStream = new FileOutputStream(file)) {

            int read;
            byte[] bytes = new byte[1024];

            while ((read = inputStream.read(bytes)) != -1) {
                outputStream.write(bytes, 0, read);
            }
        }
    }

И получить пустой файл PNG размером около 3Кб. Как правильно заставить его работать?

EDIT : причина, по которой я хочу это сделать sh, заключается в том, чтобы получить простую альтернативу API Карт Google stati c, который я сейчас развернул в работающем проекте.

1 Ответ

1 голос
/ 09 февраля 2020

Я не смог заставить его работать с HtmlUnit, но получил ожидаемый результат с помощью Selenium, на случай, если кто-то заинтересовался этой функцией:

public class PG1 {


    static WebDriver driver;

    public static void main(String[] args) throws InterruptedException {
        System.setProperty("webdriver.gecko.driver","/Users/home/Downloads/geckodriver");
        FirefoxOptions fxProfile = new FirefoxOptions();
        fxProfile.setHeadless(true);
        fxProfile.addPreference("browser.download.folderList",2);
        fxProfile.addPreference("browser.download.manager.showWhenStarting",false);
        fxProfile.addPreference("browser.download.dir","/Users/home/Downloads/");
        fxProfile.addPreference("browser.helperApps.neverAsk.saveToDisk","image/png");
        driver = new FirefoxDriver(fxProfile);
        String baseUrl = "http://rowanwins.github.io/leaflet-easyPrint/";
        driver.get(baseUrl);
        while(checkForPresenceOfElementByXpath("")) {
        }
        System.out.println("Loaded");
        driver.findElement(By.xpath("/html/body/button")).click();
        while(checkForPresenceOfElementByXpath("")) {
        }
        System.out.println("Downloaded");
        driver.close();
    }

    public static boolean checkForPresenceOfElementByXpath(String xpath){
        try{
            new WebDriverWait(driver, 5).until(ExpectedConditions.visibilityOfElementLocated(By.xpath("(xpath)[last()]")));
            return true;
        }catch(Exception e){
            return false;
        }
    }
}
...