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

    1. <legend id='K5GnT'><style id='K5GnT'><dir id='K5GnT'><q id='K5GnT'></q></dir></style></legend>
        <bdo id='K5GnT'></bdo><ul id='K5GnT'></ul>
      <tfoot id='K5GnT'></tfoot>

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

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

      1. 消息:未知錯誤:Chrome 無法啟動:在使用 Linux 4.9.8

        Message: unknown error: Chrome failed to start: exited abnormally on AWS Cloud9 with Linux 4.9.85-38.58.amzn1.x86_64 x86_64(消息:未知錯誤:Chrome 無法啟動:在使用 Linux 4.9.85-38.58.amzn1.x86_64 x86_64 的 AWS Cloud9 上異常退出

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

            <tbody id='g6BP9'></tbody>
            <bdo id='g6BP9'></bdo><ul id='g6BP9'></ul>
            <tfoot id='g6BP9'></tfoot>

              <legend id='g6BP9'><style id='g6BP9'><dir id='g6BP9'><q id='g6BP9'></q></dir></style></legend>

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

                  本文介紹了消息:未知錯誤:Chrome 無法啟動:在使用 Linux 4.9.85-38.58.amzn1.x86_64 x86_64 的 AWS Cloud9 上異常退出的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在 AWS Cloud9 中工作,我的腳本是:

                  Working in AWS Cloud9, my script is:

                  from bs4 import BeautifulSoup
                  from selenium import webdriver
                  from selenium.webdriver.chrome.options import Options
                  import requests
                  
                  
                  options = Options()
                  options.binary_location = '/usr/bin/google-chrome'
                  driver = webdriver.Chrome(chrome_options=options, executable_path='/home/ec2-user/environment/downloads/chromedriver')
                  url = 'http://google.com'
                  driver.get(url)
                  
                  soup = BeautifulSoup(driver.page_source, 'lxml')
                  
                  # driver.quit()    
                  
                  print(soup)
                  

                  但是,當我運行文件時,運行配置會掛起,直到我用 ctrl+c 鍵盤中斷.Traceback 會返回這個:

                  However, when I run the file, the run configuration hangs until I keyboard interrupt with ctrl+c. Traceback returns this:

                  > Traceback (most recent call last):   File
                  > "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/hubspot-marketplace.py",
                  > line 9, in <module>
                  >     driver = webdriver.Chrome(chrome_options=options, executable_path='/home/ec2-user/environment/downloads/chromedriver')  
                  > File
                  > "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/selenium/webdriver/chrome/webdriver.py",
                  > line 75, in __init__
                  >     desired_capabilities=desired_capabilities)   File "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/selenium/webdriver/remote/webdriver.py",
                  > line 154, in __init__
                  >     self.start_session(desired_capabilities, browser_profile)   File "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/selenium/webdriver/remote/webdriver.py",
                  > line 243, in start_session
                  >     response = self.execute(Command.NEW_SESSION, parameters)   File "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/selenium/webdriver/remote/webdriver.py",
                  > line 310, in execute
                  >     response = self.command_executor.execute(driver_command, params)   File
                  > "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/selenium/webdriver/remote/remote_connection.py",
                  > line 466, in execute
                  >     return self._request(command_info[0], url, body=data)   File "/home/ec2-user/environment/vpy36/lib/python3.6/dist-packages/selenium/webdriver/remote/remote_connection.py",
                  > line 490, in _request
                  >     resp = self._conn.getresponse()   File "/usr/lib64/python3.6/http/client.py", line 1331, in getresponse
                  >     response.begin()   File "/usr/lib64/python3.6/http/client.py", line 297, in begin
                  >     version, status, reason = self._read_status()   File "/usr/lib64/python3.6/http/client.py", line 258, in _read_status
                  >     line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")   File "/usr/lib64/python3.6/socket.py", line 586, in readinto
                  >     return self._sock.recv_into(b) KeyboardInterrupt
                  

                  剛剛花了 4 個小時嘗試將 chrome 和 beautifulsoup 安裝到 AWS Cloud 9 上.非常困難.

                  Just spent the last 4 hours trying to install chrome and beautifulsoup onto AWS Cloud 9. Very difficult.

                  我只是讓它運行,直到它自行停止并返回 Message: unknown error: Chrome failed to start: exitedly

                  I just let it run until it stopped by itself and returned Message: unknown error: Chrome failed to start: exited abnormally

                  編輯 2:驅動程序信息:chromedriver=2.10.267518,

                  Edit 2: Driver info: chromedriver=2.10.267518,

                  平臺=Linux 4.9.85-38.58.amzn1.x86_64 x86_64

                  platform=Linux 4.9.85-38.58.amzn1.x86_64 x86_64

                  谷歌瀏覽器 66.0.3359.117

                  Google Chrome 66.0.3359.117

                  推薦答案

                  這個錯誤信息...

                  Message: unknown error: Chrome failed to start: exited abnormally
                  

                  ...暗示 ChromeDriver 無法建立新的 Chrome 會話.

                  ...implies that the ChromeDriver was unable to establish a new Chrome session.

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

                  As per your question update your main issue is the version compatibility between the binaries you are using as follows :

                  • 您正在使用 chromedriver=2.10,它非常oldancient
                  • 您正在使用 chrome=66.0
                  • ChromeDriver v2.38 明確提及以下內容:

                  支持 Chrome v65-67

                  • 我們不知道您的 Selenium 客戶端 版本.
                  • 所以 ChromeDriver 版本 (v2.10) 和 Chrome 瀏覽器 版本 (v66.0)

                    So there is a clear mismatch between the ChromeDriver version (v2.10) and the Chrome Browser version (v66.0)

                    • Selenium 升級到當前級別版本 3.11.0.
                    • ChromeDriver 升級到當前的 ChromeDriverv2.38 級別.
                    • Chrome 版本保持在 Chrome v66.x 級別.(根據 ChromeDriver v2.38 發行說明)
                    • 清理你的項目工作區通過你的IDE重建你的項目只需要依賴.
                    • 使用 CCleaner 工具清除之前和在您的測試套件執行之后.
                    • 如果您的基礎 Web Client 版本太舊,請通過 卸載它Revo Uninstaller 并安裝最新的 GA 和發布版本的 Web Client.
                    • 進行一次系統重啟.
                    • 執行你的 @Test.
                    • Upgrade Selenium to current levels Version 3.11.0.
                    • Upgrade ChromeDriver to current ChromeDriver v2.38 level.
                    • Keep Chrome version at Chrome v66.x levels. (as per ChromeDriver v2.38 release notes)
                    • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.
                    • Use CCleaner tool to wipe off all the OS chores before and after the execution of your test Suite.
                    • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.
                    • Take a System Reboot.
                    • Execute your @Test.

                    您可以在以下位置找到一些相關討論:

                    You can find a couple of relevant discussions in:

                    • WebDriverException:消息:未知錯誤:Chrome 無法啟動:在 VPS 上通過 Python 使用 ChromeDriver Chrome 和 Selenium 異常退出
                    • WebDriverException:消息:未知錯誤:Chrome 無法啟動:在 VPS 上通過 Python 使用 ChromeDriver Chrome 和 Selenium 異常退出
                    • WebDriverException:消息:未知錯誤:Chrome 無法啟動:在 VPS 上通過 Python 使用 ChromeDriver Chrome 和 Selenium 異常退出

                    這篇關于消息:未知錯誤:Chrome 無法啟動:在使用 Linux 4.9.85-38.58.amzn1.x86_64 x86_64 的 AWS Cloud9 上異常退出的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  How to make a discord bot that gives roles in Python?(如何制作一個在 Python 中提供角色的不和諧機器人?)
                  Discord bot isn#39;t responding to commands(Discord 機器人沒有響應命令)
                  Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“關于我嗎?Discord 機器人的功能?(不和諧.py))
                  message.channel.id Discord PY(message.channel.id Discord PY)
                  How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 機器人?)
                  discord.py - Automaticaly Change an Role Color(discord.py - 自動更改角色顏色)
                1. <i id='evVEm'><tr id='evVEm'><dt id='evVEm'><q id='evVEm'><span id='evVEm'><b id='evVEm'><form id='evVEm'><ins id='evVEm'></ins><ul id='evVEm'></ul><sub id='evVEm'></sub></form><legend id='evVEm'></legend><bdo id='evVEm'><pre id='evVEm'><center id='evVEm'></center></pre></bdo></b><th id='evVEm'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='evVEm'><tfoot id='evVEm'></tfoot><dl id='evVEm'><fieldset id='evVEm'></fieldset></dl></div>

                    <bdo id='evVEm'></bdo><ul id='evVEm'></ul>

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

                    <legend id='evVEm'><style id='evVEm'><dir id='evVEm'><q id='evVEm'></q></dir></style></legend>
                        <tbody id='evVEm'></tbody>

                          • <tfoot id='evVEm'></tfoot>
                            主站蜘蛛池模板: 黄色网址在线播放 | 9999精品视频 | 久久中文网 | 亚洲成人精品影院 | 国产.com| 在线播放中文 | 337p日本欧洲亚洲大胆精蜜臀 | 人人射人人 | 色婷婷精品国产一区二区三区 | 91免费电影| 国产91精品久久久久久久网曝门 | 亚洲日韩视频 | 日韩精品亚洲专区在线观看 | 看片网站在线 | 中文字幕一区在线观看视频 | 亚洲情综合五月天 | 欧美午夜一区 | www.久久久.com| 97精品超碰一区二区三区 | 亚洲免费视频一区二区 | 国产色网| 久久一起草 | 在线一区观看 | 午夜小视频在线播放 | 毛片a级 | 在线观看日韩 | 成人动漫一区二区 | 日韩免费在线观看视频 | 欧美日韩高清一区 | 欧美日韩高清一区二区三区 | 国产成人精品视频在线观看 | 九九热在线视频免费观看 | 欧美视频二区 | 亚洲综合视频 | 亚洲福利| 欧洲亚洲精品久久久久 | 久久久精品视 | 国产精品资源在线 | 亚洲精品视频在线看 | 婷婷精品| 一区二区三区欧美在线观看 |