久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    1. <small id='8GEyo'></small><noframes id='8GEyo'>

    2. <legend id='8GEyo'><style id='8GEyo'><dir id='8GEyo'><q id='8GEyo'></q></dir></style></legend><tfoot id='8GEyo'></tfoot>

      • <bdo id='8GEyo'></bdo><ul id='8GEyo'></ul>
    3. <i id='8GEyo'><tr id='8GEyo'><dt id='8GEyo'><q id='8GEyo'><span id='8GEyo'><b id='8GEyo'><form id='8GEyo'><ins id='8GEyo'></ins><ul id='8GEyo'></ul><sub id='8GEyo'></sub></form><legend id='8GEyo'></legend><bdo id='8GEyo'><pre id='8GEyo'><center id='8GEyo'></center></pre></bdo></b><th id='8GEyo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='8GEyo'><tfoot id='8GEyo'></tfoot><dl id='8GEyo'><fieldset id='8GEyo'></fieldset></dl></div>

      org.openqa.selenium.WebDriverException: disconnected: not con

      org.openqa.selenium.WebDriverException: disconnected: not connected to DevTools error using ChromeDriver Chrome using Selenium and Java(org.openqa.selenium.WebDriverException: disconnected: not connected to DevTools error using ChromeDriver
      <tfoot id='F7aU4'></tfoot>

      • <bdo id='F7aU4'></bdo><ul id='F7aU4'></ul>
        <legend id='F7aU4'><style id='F7aU4'><dir id='F7aU4'><q id='F7aU4'></q></dir></style></legend>
      • <i id='F7aU4'><tr id='F7aU4'><dt id='F7aU4'><q id='F7aU4'><span id='F7aU4'><b id='F7aU4'><form id='F7aU4'><ins id='F7aU4'></ins><ul id='F7aU4'></ul><sub id='F7aU4'></sub></form><legend id='F7aU4'></legend><bdo id='F7aU4'><pre id='F7aU4'><center id='F7aU4'></center></pre></bdo></b><th id='F7aU4'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='F7aU4'><tfoot id='F7aU4'></tfoot><dl id='F7aU4'><fieldset id='F7aU4'></fieldset></dl></div>

            <tbody id='F7aU4'></tbody>

              1. <small id='F7aU4'></small><noframes id='F7aU4'>

                本文介紹了org.openqa.selenium.WebDriverException: disconnected: not connected to DevTools error using ChromeDriver Chrome using Selenium and Java的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我看到以下錯誤并且瀏覽器之間斷開連接.它只發生在 chrome 上.我使用的 Selenium 版本是:

                I am seeing below error and browser got disconnected between. Its happening only for chrome. Selenium version I am using is:

                <groupId>org.seleniumhq.selenium</groupId>
                <artifactId>selenium-java</artifactId>
                <version>3.141.59</version> 
                

                錯誤堆棧跟蹤:

                [1579632222.785][SEVERE]: Unable to receive message from renderer
                org.openqa.selenium.WebDriverException: disconnected: not connected to DevTools
                  (Session info: chrome=79.0.3945.117)
                Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:17:03'
                System info: host: 'MBP15-PBJGH8.8x8.com', ip: 'fe80:0:0:0:1846:114d:10a6:bf26%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14.6', java.version: '1.8.0_201'
                Driver info: org.openqa.selenium.chrome.ChromeDriver
                Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 79.0.3945.117, chrome: {chromedriverVersion: 78.0.3904.70 (edb9c9f3de024..., userDataDir: /var/folders/mz/2_llwtkx31d...}, goog:chromeOptions: {debuggerAddress: localhost:54446}, javascriptEnabled: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: MAC, platformName: MAC, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
                Session ID: 3577826ba5ac2d089a34e17f9aa987c9
                

                推薦答案

                這個錯誤信息...

                org.openqa.selenium.WebDriverException: disconnected: not connected to DevTools
                  (Session info: chrome=79.0.3945.117)
                .
                .
                Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 79.0.3945.117, chrome: {chromedriverVersion: 78.0.3904.70 (edb9c9f3de024..., userDataDir: /var/folders/mz/2_llwtkx31d...}, goog:chromeOptions: {debuggerAddress: localhost:54446}, javascriptEnabled: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: MAC, platformName: MAC, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
                

                ...暗示 ChromeDriver 無法啟動/生成新的瀏覽上下文,即 Chrome 瀏覽器 會話.

                ...implies that the ChromeDriver was unable to initiate/spawn a new Browsing Context i.e. Chrome Browser session.

                您的主要問題是您使用的二進制文件版本之間的不兼容性,如下所示:

                Your main issue is the incompatibility between the version of the binaries you are using as follows:

                • 您正在使用 chromedriver=78.0
                • chromedriver=78.0的發行說明a> 明確提及以下內容:

                支持 Chrome v78

                • 您正在使用 chrome=79.0
                • ChromeDriver v79.0的發行說明/a> 明確提及以下內容:
                  • You are using chrome=79.0
                  • Release Notes of ChromeDriver v79.0 clearly mentions the following :
                  • 支持 Chrome 79

                    所以 ChromeDriver v78.0Chrome 瀏覽器 v79.0

                    確保:

                    • ChromeDriver 已更新為當前 ChromeDriver v79.0.3945.36 級別.
                    • Chrome 已更新至當前 Chrome 版本 79.0 級別.(根據 ChromeDriver v79.0 發行說明)
                    • 清理你的項目工作區通過你的IDE重建你的項目只需要依賴.
                    • 如果您的基本 Web 客戶端 版本太舊,請卸載它并安裝最新的 GA 和發布版本的 Web 客戶端.
                    • 進行一次系統重啟.
                    • 非 root 用戶身份執行您的 @Test.
                    • 總是在 tearDown(){} 方法中調用 driver.quit() 來關閉 &優雅地銷毀 WebDriverWeb Client 實例.
                    • ChromeDriver is updated to current ChromeDriver v79.0.3945.36 level.
                    • Chrome is updated to current Chrome Version 79.0 level. (as per ChromeDriver v79.0 release notes)
                    • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.
                    • If your base Web Client version is too old, then uninstall it and install a recent GA and released version of Web Client.
                    • Take a System Reboot.
                    • Execute your @Test as non-root user.
                    • Always invoke driver.quit() within tearDown(){} method to close & destroy the WebDriver and Web Client instances gracefully.

                    這篇關于org.openqa.selenium.WebDriverException: disconnected: not connected to DevTools error using ChromeDriver Chrome using Selenium and Java的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                    【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                How can I detect integer overflow on 32 bits int?(如何檢測 32 位 int 上的整數溢出?)
                Local variables before return statements, does it matter?(return 語句之前的局部變量,這有關系嗎?)
                How to convert Integer to int?(如何將整數轉換為整數?)
                How do I create an int array with randomly shuffled numbers in a given range(如何在給定范圍內創建一個隨機打亂數字的 int 數組)
                Inconsistent behavior on java#39;s ==(java的行為不一致==)
                Why is Java able to store 0xff000000 as an int?(為什么 Java 能夠將 0xff000000 存儲為 int?)
                    <tbody id='YXFpd'></tbody>

                      <bdo id='YXFpd'></bdo><ul id='YXFpd'></ul>
                        <tfoot id='YXFpd'></tfoot>

                        <legend id='YXFpd'><style id='YXFpd'><dir id='YXFpd'><q id='YXFpd'></q></dir></style></legend>
                      1. <i id='YXFpd'><tr id='YXFpd'><dt id='YXFpd'><q id='YXFpd'><span id='YXFpd'><b id='YXFpd'><form id='YXFpd'><ins id='YXFpd'></ins><ul id='YXFpd'></ul><sub id='YXFpd'></sub></form><legend id='YXFpd'></legend><bdo id='YXFpd'><pre id='YXFpd'><center id='YXFpd'></center></pre></bdo></b><th id='YXFpd'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='YXFpd'><tfoot id='YXFpd'></tfoot><dl id='YXFpd'><fieldset id='YXFpd'></fieldset></dl></div>
                        • <small id='YXFpd'></small><noframes id='YXFpd'>

                          主站蜘蛛池模板: 91xx在线观看 | 亚洲视频欧美视频 | 伊人网99| 久久久成人免费视频 | 国产91在线 | 中日 | 欧美专区在线 | 国产精品成人一区二区三区 | 国外成人在线视频网站 | 中文字幕在线人 | 国产日韩一区二区 | 国产98色在线 | 欧美激情一区二区三级高清视频 | 在线视频一区二区三区 | 亚洲综合色丁香婷婷六月图片 | 久久国产精品一区二区三区 | 九九久久国产 | 亚洲欧洲中文日韩 | 美女日批免费视频 | 精品二区| 操久久 | 久久免费福利 | 亚洲九色 | 国产精品精品视频一区二区三区 | 色综合视频 | 久久一级大片 | 欧美中文字幕在线观看 | 97在线观看 | 成年人在线播放 | 国产精品区一区二区三区 | 国产网站在线免费观看 | 日本久久精品视频 | 国产精品一区二区久久精品爱微奶 | 亚洲精品在线免费观看视频 | 亚洲综合色丁香婷婷六月图片 | 国产精品毛片无码 | 久久精品一级 | 天天躁人人躁人人躁狂躁 | 欧美精品成人一区二区三区四区 | 国产精品久久久久久福利一牛影视 | 国产高清精品在线 | 一区二区在线免费观看视频 |