簡體   English   中英

“ Chrome無法啟動:異常退出”

[英]“Chrome failed to start: exited abnormally”

我正在嘗試在Ubuntu 16.4上運行一個簡單的硒箱,以檢查更新的ChromeDriver版本。 這是我的設置信息:

OS: Ubuntu 16.04
Chromium: 69.0.3497.81, Built on Ubuntu , 
Chromedriver: v2.8.240825
jdk: openjdk version "1.8.0_181"

這是我簡單的Java代碼:

public static void main(String[] args) throws IOException, InterruptedException {
        System.setProperty("webdriver.chrome.driver", "/usr/bin/chromedriver");
        System.setProperty("webdriver.chrome.logfile", "/tmp/chromedriver.log");
        System.setProperty("webdriver.chrome.verboseLogging", "true");

        ChromeOptions chromeOptions = new ChromeOptions();
        chromeOptions.addArguments("--headless", "window-size=1024,768", "--no-sandbox");
        WebDriver driver = new ChromeDriver(chromeOptions);
        driver.get("https://google.com");
        System.out.println("Title is " + driver.getTitle());

        if (driver.getPageSource().contains("I'm Feeling Lucky")) {
            System.out.println("Pass");
        } else {
            System.out.println("Fail");
        }
        driver.quit();
    }

但是在運行時期間,我一直在日志文件中看到“ Chrome無法啟動:異常退出”的信息

 "
....
    [0.317][INFO]: Launching chrome: /usr/bin/chromium-browser --disable-background-networking --disable-client-side-phishing-detection --disable-component-update --disable-default-apps --disable-hang-monitor --disable-prompt-on-repost --dis
    able-web-resources --enable-logging --full-memory-crash-report --ignore-certificate-errors --load-extension=/tmp/.org.chromium.Chromium.GO6lAd/internal --logging-level=1 --metrics-recording-only --no-first-run --password-store=basic --re
    mote-debugging-port=12811 --safebrowsing-disable-auto-update --safebrowsing-disable-download-protection --use-mock-keychain --user-data-dir=/tmp/.org.chromium.Chromium.uTbJHO data:,
    [0.317][DEBUG]: DevTools request: http://127.0.0.1:12811/json/version
    [0.319][WARNING]: PAC support disabled because there is no system implementation
    [0.390][DEBUG]: DevTools request failed
    [0.440][DEBUG]: DevTools request: http://127.0.0.1:12811/json/version
    [0.441][DEBUG]: DevTools request failed
    "

但是,如果我要將ChromeDriver降級到2.4版,則相同的代碼可以完美運行。 有人知道為什么嗎? 之所以需要最新的功能,是因為我還需要使用其他一些功能。

失敗實際上是由版本2.9、2.8的舊版Chrome驅動程序引起的。 等等。最新的2.38或2.42沒有這種行為。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM