久久久久久久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>
                          主站蜘蛛池模板: 亚洲欧美在线视频 | 久久国产电影 | 日韩欧美国产成人一区二区 | 久久一区二区免费视频 | 伊人久久综合 | 日日操网站 | 欧美日韩第一页 | 欧美日韩视频 | 国产高清免费视频 | 日美女逼逼| 国产精品成人一区二区三区 | 日韩中文在线 | 日韩在线观看一区 | 精品久久久久久亚洲综合网 | 中文字幕在线视频一区二区三区 | 欧美色a v| 亚洲97 | 美女爽到呻吟久久久久 | 成人av免费在线观看 | 91精品国产乱码久久蜜臀 | 三级高清| 国产亚洲精品精品国产亚洲综合 | 羞羞在线视频 | 男女搞网站 | 国产一区免费 | 日韩在线观看 | 超碰在线影院 | 久久精品国产亚洲 | 欧美一级黄色片 | 欧美精品久久久 | 精品视频一区二区 | 日韩欧美一区二区三区 | 久久久久久久久久久久久9999 | 久久av一区二区 | 成人午夜黄色 | 黄a在线播放 | av在线二区 | 国产高清精品一区二区三区 | 欧美不卡视频一区发布 | 中文字幕视频三区 | 久久国色 |