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

<tfoot id='obgwW'></tfoot>
    <legend id='obgwW'><style id='obgwW'><dir id='obgwW'><q id='obgwW'></q></dir></style></legend>

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

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

        python/selenium/chromedriver TimeoutException

        python/selenium/chromedriver TimeoutException(python/selenium/chromedriver TimeoutException)
          <bdo id='zx3Wh'></bdo><ul id='zx3Wh'></ul>

          • <tfoot id='zx3Wh'></tfoot>
            <legend id='zx3Wh'><style id='zx3Wh'><dir id='zx3Wh'><q id='zx3Wh'></q></dir></style></legend>
            • <small id='zx3Wh'></small><noframes id='zx3Wh'>

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

                1. 本文介紹了python/selenium/chromedriver TimeoutException的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在使用 selenium 和 chrome webdriver 從網站上抓取 pdf.我使用以下內容,從列表中拉出 site:

                  I'm in the process of scraping pdfs from a website using selenium and chrome webdriver. I use the following, pulling the site from a list:

                  driver.get(site) 
                  source = driver.page_source
                  ...
                  ...
                  driver.quit()
                  

                  但我不斷收到以下錯誤,我的 site 列表中有大約 6,000 次觀察:

                  But I keep getting the following error, about 6,000 observations down my site list:

                  Traceback (most recent call last):
                  File "<stdin>", line 127, in <module>
                  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py", line 323, in get self.execute(Command.GET, {'url': url})
                  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py", line 311, in execute self.error_handler.check_response(response)
                  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/errorhandler.py", line 237, in check_response raise exception_class(message, screen, stacktrace)
                  selenium.common.exceptions.TimeoutException: Message: timeout
                  (Session info: chrome=63.0.3239.84)
                  (Driver info: chromedriver=2.33.506092 
                  (733a02544d189eeb751fe0d7ddca79a0ee28cce4),platform=Linux 4.10.0-40-generic x86_64)
                  

                  我嘗試過以更短的時間間隔刷新源頁面(每 200 次搜索,但我應該縮短嗎?).

                  I've tried refreshing the source page at shorter intervals (every 200 searches, but should I go shorter?).

                  如何延長 selenium 的 120 秒超時限制?

                  How do I extend selenium's 120sec timeout limit?

                  推薦答案

                  這個錯誤信息...

                  Traceback (most recent call last):
                  File "<stdin>", line 127, in <module>
                  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webdriver.py", line 323, in get self.execute(Command.GET, {'url': url})
                  .
                  selenium.common.exceptions.TimeoutException: Message: timeout
                  (Session info: chrome=63.0.3239.84)
                  (Driver info: chromedriver=2.33.506092 
                  (733a02544d189eeb751fe0d7ddca79a0ee28cce4),platform=Linux 4.10.0-40-generic x86_64)
                  

                  ...表示 webdriver 實例無法與 site url 建立連接并發生 timeout.

                  ...implies that the webdriver instance cannot establish a connection with the site url and timeout occurs.

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

                  Your main issue is the version compatibility between the binaries you are using as follows :

                  • 您正在使用 ChromeDriver v2.33
                  • ChromeDriver v2.33 明確提及以下內容:

                  支持 Chrome v60-62

                  • 您正在使用 chrome=63.0
                  • Selenium 版本我們不知道.
                    • You are using chrome=63.0
                    • Selenium Version is unknown to us.
                    • 因此,您使用的 ChromeDriver v2.33Chrome 瀏覽器 v63.0 之間存在明顯的不匹配.因此 ChromeDriver 無法生成新的 Chrome 瀏覽器 進程.

                      So there is a clear mismatch between the ChromeDriver v2.33 and the Chrome Browser v63.0 you are using. Hence ChromeDriver is unable to spawn the new Chrome Browser process.

                      • ChromeDriver 更新到最近的 v2.35 級別.
                      • Chrome 升級到穩定的 Chrome v64.x 級別.(根據 ChromeDriver v2.35 發行說明)
                      • Selenium 升級到當前級別 3.9.1 版.
                      • 清理并通過您的IDE重新構建您的項目.
                      • 清除瀏覽器緩存.
                      • 運行 CCleaner 工具,在執行 之前和之后清除所有操作系統雜務測試套件.
                      • 如果您的 Web 瀏覽器 基礎版本太舊,請通過 Web 瀏覽器" rel="nofollow noreferrer">Revo Uninstaller 使用 Moderate Scan 并安裝 Web 瀏覽器 的最新 GA 發布 版本.
                      • 執行您的測試.
                      • Update ChromeDriver to recent v2.35 level.
                      • Upgrade Chrome to stable Chrome v64.x levels. (as per ChromeDriver v2.35 release notes)
                      • Upgrade Selenium to current levels Version 3.9.1.
                      • Clean and Re-Build your project through your IDE.
                      • Clear the Browser Cache.
                      • Run CCleaner tool to wipe off all the OS chores before and after execution of your Test Suite.
                      • If your Web Browser base version is too old, uninstall the Web Browser through Revo Uninstaller with Moderate Scan and install a recent GA Released version of the Web Browser.
                      • Execute your Tests.

                      這篇關于python/selenium/chromedriver TimeoutException的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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='lhnyW'></tfoot>

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

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

                            <tbody id='lhnyW'></tbody>
                            <bdo id='lhnyW'></bdo><ul id='lhnyW'></ul>

                            主站蜘蛛池模板: 国产精品伦一区二区三级视频 | 亚洲欧洲精品一区 | 毛片com | 国产日韩欧美综合 | 国产一区二区三区色淫影院 | 久久久久国产精品一区三寸 | 久国久产久精永久网页 | 日本五月婷婷 | 一区二区在线 | 91精品国产综合久久久动漫日韩 | 综合视频在线 | 久久视频精品 | 色999日韩 | 日韩在线中文字幕 | 大吊一区二区 | 亚洲高清在线观看 | 日韩免费视频 | 高清欧美性猛交xxxx黑人猛交 | 免费在线观看一区二区三区 | 久久a久久 | 一区二区三区高清 | jizz亚洲人| 成年人免费网站 | 国产成人精品久久 | 国产激情网 | 99精品视频网 | 国产激情一区二区三区 | 久久男女视频 | 国产精品九九视频 | 国产中文字幕网 | 精品视频一区在线 | 韩日在线视频 | 天堂va在线观看 | 欧美日韩在线看 | 一级黄色片日本 | 97人人澡人人爽91综合色 | 欧美一区二区在线看 | 人人爽人人爽 | 欧美成年网站 | 精品一区二区三区在线观看 | 美国a级毛片免费视频 |