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

      <bdo id='9O8nI'></bdo><ul id='9O8nI'></ul>
    <legend id='9O8nI'><style id='9O8nI'><dir id='9O8nI'><q id='9O8nI'></q></dir></style></legend>

  1. <small id='9O8nI'></small><noframes id='9O8nI'>

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

      Selenium 無法在 CentOS 中啟動 Chromedriver

      Selenium fails to start Chromedriver in CentOS(Selenium 無法在 CentOS 中啟動 Chromedriver)
        <tbody id='5eWHd'></tbody>
        <tfoot id='5eWHd'></tfoot>

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

          • <small id='5eWHd'></small><noframes id='5eWHd'>

            <legend id='5eWHd'><style id='5eWHd'><dir id='5eWHd'><q id='5eWHd'></q></dir></style></legend>
              • <bdo id='5eWHd'></bdo><ul id='5eWHd'></ul>
              • 本文介紹了Selenium 無法在 CentOS 中啟動 Chromedriver的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我嘗試用 Selenium 啟動 Chromedriver

                從 selenium 導入 webdriver驅動程序 = webdriver.Chrome()driver.get("http://www.google.com/")打印(驅動程序.標題)

                和下面的錯誤消息:

                raise exception_class(message, screen, stacktrace)selenium.common.exceptions.WebDriverException:消息:未知錯誤:Chrome 無法啟動:異常退出(驅動信息:chromedriver=2.33.506092,platform=Linux 3.10.0-693.5.2.el7.x86_64 x86_64)

                我正在使用這些:

                [root@jdu4e00u53f7 工作區]# ll/usr/local/bin/chromedriverlrwxrwxrwx 1 root root 17 11 月 14 00:31/usr/local/bin/chromedriver ->/opt/chromedriver

                • CentOS 7.3
                • Python(3.6.2)
                • 硒 (3.7.0)
                • 谷歌瀏覽器 (62.0.3202.89)
                • chromedriver(2.9)/我改成chromedriver=2.33.506092
                • Xvfb

                ps,我也試過了

                1. driver = webdriver.Chrome('/usr/local/bin/chromedriver'),不行……

                test.py輸出

                參考:Selenium 無法啟動 Chromedriver

                1. 在我的服務器上在后臺啟動 Xvfb:Xvfb :0 -ac -screen 0 1024x768x24 &也不起作用

                ref:未知錯誤:Chrome 失敗啟動:異常退出(驅動信息:chromedriver=2.9

                解決方案

                從您提到的配置中可以明顯看出您使用的是 Selenium v??3.7.0, Google Chrome 62.0 以及不兼容的 chromedriver v2.9.因此,我們看到了錯誤 WebDriverException: Message: unknown error: Chrome failed to start: exited異常

                <塊引用>

                ChromeDriver v2.33的發行說明明確提到Supports Chrome v60-62

                解決方案:

                chromedriver v2.33="nofollow noreferrer">this link 并執行你的測試用例.

                更新:

                試試下面的代碼塊:

                從 selenium 導入 webdriverdriver = webdriver.Chrome(executable_path='/usr/local/bin/chromedriver')driver.get('https://www.google.co.in')print("頁面標題是:%s" %driver.title)driver.quit()

                <塊引用>

                從 selenium 導入 webdriverdriver = webdriver.Chrome(executable_path='/opt/chromedriver')driver.get('https://www.google.co.in')print("頁面標題是:%s" %driver.title)driver.quit()

                I try to start Chromedriver with Selenium

                from selenium import webdriver
                driver = webdriver.Chrome()
                driver.get("http://www.google.com/")
                print(driver.title)
                

                and error msg below:

                raise exception_class(message, screen, stacktrace)
                selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally
                 (Driver info: chromedriver=2.33.506092,platform=Linux 3.10.0-693.5.2.el7.x86_64 x86_64)
                

                I am using these:

                [root@jdu4e00u53f7 workspace]# ll /usr/local/bin/chromedriver
                lrwxrwxrwx 1 root root 17 11月 14 00:31 /usr/local/bin/chromedriver -> /opt/chromedriver
                

                • CentOS 7.3
                • Python(3.6.2)
                • selenium (3.7.0)
                • Google Chrome (62.0.3202.89)
                • chromedriver(2.9)/ I changed to chromedriver=2.33.506092
                • Xvfb

                ps, I also tried

                1. driver = webdriver.Chrome('/usr/local/bin/chromedriver'),it not work...

                test.py output

                ref :Selenium fails to start Chromedriver

                1. On my server start Xvfb in the background: Xvfb :0 -ac -screen 0 1024x768x24 & and also not work

                ref:unknown error: Chrome failed to start: exited abnormally (Driver info: chromedriver=2.9

                解決方案

                It is much evident from your mentioned configuration that you are using Selenium v3.7.0, Google Chrome 62.0 along with chromedriver v2.9 which is not compatible. Hence we are seeing the error WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally

                The Release Notes of ChromeDriver v2.33 clearly mentions Supports Chrome v60-62

                Solution:

                Download the latest chromedriver v2.33 from this link and execute your testcase.

                Update :

                Try the following code block :

                from selenium import webdriver
                driver = webdriver.Chrome(executable_path='/usr/local/bin/chromedriver')
                driver.get('https://www.google.co.in')
                print("Page Title is : %s" %driver.title)
                driver.quit()
                

                OR

                from selenium import webdriver
                driver = webdriver.Chrome(executable_path='/opt/chromedriver')
                driver.get('https://www.google.co.in')
                print("Page Title is : %s" %driver.title)
                driver.quit()
                

                這篇關于Selenium 無法在 CentOS 中啟動 Chromedriver的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                相關文檔推薦

                python: Two modules and classes with the same name under different packages(python:不同包下同名的兩個模塊和類)
                Configuring Python to use additional locations for site-packages(配置 Python 以使用站點包的其他位置)
                How to structure python packages without repeating top level name for import(如何在不重復導入頂級名稱的情況下構造python包)
                Install python packages on OpenShift(在 OpenShift 上安裝 python 包)
                How to refresh sys.path?(如何刷新 sys.path?)
                Distribute a Python package with a compiled dynamic shared library(分發帶有已編譯動態共享庫的 Python 包)

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

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

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

                          <tbody id='D2Bjg'></tbody>
                        • <bdo id='D2Bjg'></bdo><ul id='D2Bjg'></ul>
                          主站蜘蛛池模板: 欧美一级欧美一级在线播放 | jizjizjiz中国护士18| 狠狠色综合久久婷婷 | 久久国产一区二区三区 | 久久久久久电影 | 91热爆在线观看 | 欧美精品成人 | 日韩视频在线免费观看 | 日韩电影中文字幕 | 日本a在线| 久久精品视频一区二区 | 亚洲综合色视频在线观看 | 久久久91精品国产一区二区三区 | 午夜a级理论片915影院 | 欧美中文字幕一区二区 | 午夜精品一区二区三区在线视频 | 一区二区三区高清 | 国产一区久久 | 亚洲国产精品激情在线观看 | 成人1区2区 | 国产精品一区二区电影 | 久久久亚洲一区 | 日本超碰 | 久草在线青青草 | 午夜精品久久久久久久久久久久久 | 欧美国产日韩在线 | 国产黑丝av | 亚洲天堂中文字幕 | 久久丝袜 | 国产在线永久免费 | 国产一区二区三区色淫影院 | 一区在线视频 | 亚洲欧美视频一区 | 日韩爱爱网 | 婷婷丁香综合网 | 成人a视频在线观看 | 一级片在线视频 | 毛片综合 | 久久精品二区亚洲w码 | 国产精品入口 | 日本在线视 |