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

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

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

        • <bdo id='Vl0fP'></bdo><ul id='Vl0fP'></ul>

        WebDriverException:消息:長時間無法訪問 chrome

        WebDriverException: Message: chrome not reachable after long time(WebDriverException:消息:長時間無法訪問 chrome)
          • <bdo id='GWkHc'></bdo><ul id='GWkHc'></ul>

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

                • <small id='GWkHc'></small><noframes id='GWkHc'>

                  本文介紹了WebDriverException:消息:長時間無法訪問 chrome的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  這是代碼:

                  driver = webdriver.Chrome()
                  while True:
                     #do thing that require hours
                     #then i use selenium once
                  driver.get(link)
                  

                  我需要先打開 selenium,然后制作需要數小時的東西,因為當我打開 selenium 時,我需要做好準備并加快速度.如果將 driver = webdriver.Chrome() 放在 while 下面,它會減慢一切我不知道它是否相關,但我使用 nohup 命令運行此代碼.

                  I need to open first selenium and then make things that require hours because when i open selenium i need to be ready and speed. If put driver = webdriver.Chrome() below the while, it would slow everything down i don't know if it is relevant but i run this code with nohup command.

                  追溯:

                  Traceback (most recent call last):
                    File "Scraper.py", line 84, in <module>
                      main()
                    File "Scraper.py", line 74, in main
                      waitForSomething()
                    File "Scraper.py", line 54, in waitForSomething
                      fillForm(str(link)[2:-2])
                    File "Scraper.py", line 30, in fillForm
                      driver.get(link)
                    File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py", line 333, in get
                      self.execute(Command.GET, {'url': url})
                    File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
                      self.error_handler.check_response(response)
                    File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_resp$
                      raise exception_class(message, screen, stacktrace)
                  selenium.common.exceptions.WebDriverException: Message: chrome not reachable
                    (Session info: chrome=192.168.0.0)
                    (Driver info: chromedriver=2.36.540471 (9c759b81a907e70363c6312294d30b6ccccc2752),platform=Linux 4.9.0-9-amd64 x$
                  

                  推薦答案

                  最初我問自己的問題與@GregBurghardt 在評論中提出的問題相同,直到我分析了詳細的錯誤堆棧跟蹤.

                  Initially I had asked myself the same questions as @GregBurghardt had been asking in the comments till I analyzed the detailed error stack trace.

                  是的,在標記為 #do thing that require hours 的那些步驟中發生了令人驚奇的事情.因此,沒有將 Chrome 瀏覽器版本顯示為 chrome=76.0,chrome=75.0> 或 chrome=74.0 它顯示:

                  Yes, there is somehting amazing happening in those steps marked as #do thing that require hours. Hence, instaed of showing Chrome browser version as chrome=76.0, chrome=75.0 or chrome=74.0 it shows:

                  (Session info: chrome=192.168.0.0)
                  

                  這非常令人驚訝.

                  除非您向我們更新為什么以及如何將 Chrome 版本更改為這樣的值,否則幾乎不可能分析問題.

                  It would be almost impossible to analyze the issue until and unless you update us why and how the Chrome version gets changed to such value.

                  話雖如此,您的主要問題可能是您使用的二進制文件版本之間的不兼容.

                  Having said that, possibly your main issue is the incompatibility between the version of the binaries you are using.

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

                  支持 Chrome v63-65

                  • 大概你使用的是最新的chrome= 76.0
                  • ChromeDriver v76.0的發行說明/a> 明確提及以下內容:
                    • Presumably you are using the latest chrome= 76.0
                    • Release Notes of ChromeDriver v76.0 clearly mentions the following :
                    • 支持Chrome 76版

                      • 我們不知道您的 Selenium 客戶端 版本.
                      • 所以 ChromeDriver v2.36Chrome 瀏覽器 v76.0

                        確保:

                        • Selenium 已升級到當前級別版本 3.141.59.
                        • ChromeDriver 已更新為當前 ChromeDriver v76.0 級別.
                        • Chrome 已更新至當前 Chrome 版本 76.0 級別.(根據 ChromeDriver v76.0 發行說明)
                        • 清理你的項目工作區通過你的IDE重建你的項目只需要依賴.
                        • 如果您的基本 Web 客戶端 版本太舊,請卸載它并安裝最新的 GA 和發布版本的 Web 客戶端.
                        • 進行一次系統重啟.
                        • 非 root 用戶身份執行您的 @Test.
                        • 總是在 tearDown(){} 方法中調用 driver.quit() 來關閉 &優雅地銷毀 WebDriverWeb Client 實例.
                        • Selenium is upgraded to current levels Version 3.141.59.
                        • ChromeDriver is updated to current ChromeDriver v76.0 level.
                        • Chrome is updated to current Chrome Version 76.0 level. (as per ChromeDriver v76.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.
                        • Python selenium WebDriverException: chrome 無法訪問打開 ChromeDriver 時
                        • selenium.common.exceptions.WebDriverException:消息:將 find_element_by_id Selenium 與 ChromeDriver 一起使用時出現 chrome 無法訪問錯誤
                        • org.openqa.selenium.WebDriverException: chrome 無法訪問 - 嘗試啟動新會話時

                        這篇關于WebDriverException:消息:長時間無法訪問 chrome的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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 - 自動更改角色顏色)
                  <tfoot id='NXpg4'></tfoot>
                • <small id='NXpg4'></small><noframes id='NXpg4'>

                  1. <i id='NXpg4'><tr id='NXpg4'><dt id='NXpg4'><q id='NXpg4'><span id='NXpg4'><b id='NXpg4'><form id='NXpg4'><ins id='NXpg4'></ins><ul id='NXpg4'></ul><sub id='NXpg4'></sub></form><legend id='NXpg4'></legend><bdo id='NXpg4'><pre id='NXpg4'><center id='NXpg4'></center></pre></bdo></b><th id='NXpg4'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='NXpg4'><tfoot id='NXpg4'></tfoot><dl id='NXpg4'><fieldset id='NXpg4'></fieldset></dl></div>
                      <tbody id='NXpg4'></tbody>
                    1. <legend id='NXpg4'><style id='NXpg4'><dir id='NXpg4'><q id='NXpg4'></q></dir></style></legend>
                          • <bdo id='NXpg4'></bdo><ul id='NXpg4'></ul>
                          • 主站蜘蛛池模板: 岛国毛片在线观看 | 日韩有码一区二区三区 | www视频在线观看 | av在线影院| 在线亚洲欧美 | 欧美二区在线 | 三级欧美| 午夜伊人 | 日韩在线高清 | 黄网站在线播放 | 中文字幕免费观看 | 久久国产精品免费视频 | 国产精品久久久亚洲 | 狠狠色综合久久婷婷 | 日韩一区二区福利视频 | 欧美一级全黄 | 国产精品久久久久久影院8一贰佰 | 超碰在线播 | 欧美日韩精品免费观看 | 精品国产乱码久久久久久影片 | 午夜tv免费观看 | 欧美日韩电影在线 | 99久久日韩精品免费热麻豆美女 | 日韩精品视频在线免费观看 | 美女视频.| 精精国产视频 | 天天操天天插 | 国产精品视频 | 亚洲精品大全 | 亚洲精选一区二区 | 一级毛片免费视频观看 | 一级免费毛片 | 给我免费的视频在线观看 | 成人福利在线 | 久久久久久综合 | 中文字幕在线观看视频网站 | 久久久久久国产精品免费免费狐狸 | 国产精品免费一区二区三区四区 | 久久久2o19精品 | 久久精品国内 | a亚洲精品|