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

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

      • <bdo id='CmmqU'></bdo><ul id='CmmqU'></ul>
    1. <small id='CmmqU'></small><noframes id='CmmqU'>

        <tfoot id='CmmqU'></tfoot>

        WebDriverException:斷開連接:即使提供最新 chromedriv

        WebDriverException: disconnected: unable to connect to renderer even on providing correct path of latest chromedriver(WebDriverException:斷開連接:即使提供最新 chromedriver 的正確路徑,也無法連接到渲染器) - IT屋-程序
            <bdo id='ElOlA'></bdo><ul id='ElOlA'></ul>
              <tbody id='ElOlA'></tbody>

              <small id='ElOlA'></small><noframes id='ElOlA'>

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

            • <tfoot id='ElOlA'></tfoot>

                  本文介紹了WebDriverException:斷開連接:即使提供最新 chromedriver 的正確路徑,也無法連接到渲染器的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  package Testing_Forum;
                  
                  import java.util.concurrent.TimeUnit;
                  
                  import org.openqa.selenium.PageLoadStrategy;
                  import org.openqa.selenium.WebDriver;
                  import org.openqa.selenium.chrome.ChromeDriver;
                  public class XTR {
                  
                      public static void main(String arg[]) {
                      System.getProperty("webdriver.chrome.driver,D:\Important\chromedriver_win32_important\chromedriver.exe");
                  
                          WebDriver driver=new ChromeDriver();
                          driver.get("https://www.google.com/");
                          driver.manage().window().maximize();
                          driver.manage().timeouts().implicitlyWait(1000, TimeUnit.SECONDS);
                      }
                  }
                  

                  它可以正確打開瀏覽器,但使用舊的 chromedriver,即 chromedriver 2.31 版.我已經刪除了這個版本的驅動程序并安裝了 2.46,甚至在 System.getProperty 中提到了正確的路徑.你能幫我解決這個問題嗎?

                  It opens the browser properly but uses old chromedriver i.e chromedriver version 2.31. I have deleted this version driver and installed 2.46 and even have mentioned proper path in System.getProperty. Can you please help me with this problem.

                  我得到的輸出是:

                  Exception in thread "main" org.openqa.selenium.WebDriverException: disconnected: unable to connect to renderer
                    (Session info: chrome=72.0.3626.119)
                    (Driver info: chromedriver=2.31.488763 (092de99f48a300323ecf8c2a4e2e7cab51de5ba8),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information)
                  Command duration or timeout: 0 milliseconds
                  Build info: version: '3.8.1', revision: '6e95a6684b', time: '2017-12-01T19:05:32.194Z'
                  System info: host: 'DESKTOP-P5LJI3P', ip: '192.168.0.100', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_191'
                  Driver info: org.openqa.selenium.chrome.ChromeDriver
                  Capabilities {acceptSslCerts: true, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.31.488763 (092de99f48a300..., userDataDir: C:UsersDellAppDataLocal...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 72.0.3626.119, webStorageEnabled: true}
                  Session ID: 2b066d8eb4b2d3e783abfb1e0836b749
                  

                  推薦答案

                  您需要傳遞 KeyValue 而不是使用 System.getProperty()部分包含chromedriver.exe絕對路徑,分別通過System.setProperty()行如下:

                  Instead of using System.getProperty() you need to pass the Key and Value part containing the absolute path of the chromedriver.exe seperately through the System.setProperty() line as follows:

                  System.setProperty("webdriver.chrome.driver", "D:\Important\chromedriver_win32_important\chromedriver.exe");
                  

                  這篇關于WebDriverException:斷開連接:即使提供最新 chromedriver 的正確路徑,也無法連接到渲染器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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?)

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

                      • <legend id='wVtys'><style id='wVtys'><dir id='wVtys'><q id='wVtys'></q></dir></style></legend>

                            <bdo id='wVtys'></bdo><ul id='wVtys'></ul>
                          • 主站蜘蛛池模板: 中文字幕在线网 | 色婷婷亚洲一区二区三区 | 亚洲国产视频一区二区 | 亚洲性视频 | 超碰最新在线 | 成年人网站在线观看视频 | 国产精品久久久久久婷婷天堂 | 中文字幕亚洲一区 | 一道本在线 | 国产日产精品一区二区三区四区 | 久草中文在线观看 | 成人免费久久 | 午夜精品久久久久久久星辰影院 | 99资源站 | 国产一二三区精品视频 | 一级片在线视频 | 在线不卡视频 | 黑色丝袜三级在线播放 | 亚洲精品九九 | 国产成人精品免高潮在线观看 | 国产精品久久av | 蜜桃毛片| 伊人免费在线观看 | 一区二区日韩 | 欧美乱码精品一区二区三区 | 亚洲人人 | 91免费小视频| 精品一区二区不卡 | 亚洲高清在线 | 国产欧美日韩一区 | 精品九九在线 | 国产毛片久久久 | 欧美亚洲国产日韩 | 国产精品日日做人人爱 | 五月综合激情婷婷 | 欧美一级欧美三级在线观看 | 国产成人精品久久 | 免费成人午夜 | 国产免费人成xvideos视频 | 欧美精品tv | 婷婷久久网|