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

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

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

    <tfoot id='t3RKn'></tfoot>
      <bdo id='t3RKn'></bdo><ul id='t3RKn'></ul>

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

      1. “站點 url"中發生錯誤:未捕獲的類型錯誤:無

        An error has occured in #39;site url#39;: Uncaught TypeError: Cannot read property #39;getColomnSet#39; of undefined with Selenium and Python(“站點 url中發生錯誤:未捕獲的類型錯誤:無法使用 Selenium 和 Python 讀取未定義
        <tfoot id='PFGw9'></tfoot>

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

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

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

                  本文介紹了“站點 url"中發生錯誤:未捕獲的類型錯誤:無法使用 Selenium 和 Python 讀取未定義的屬性“getColomnSet"的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在嘗試使用 Selenium for Python 和 Chrome 網絡驅動程序來自動下載文件.

                  I am trying to use Selenium for Python eith the Chrome webdriver to automate the download of a file.

                  我的程序完美運行到最后一步(點擊下載"按鈕),此時會觸發一個帶有文本的對話框:

                  My program works perfectly up to the last step (clicking on the 'download' button) at which point a dialog box is triggered with the text:

                  ‘站點 url’出現錯誤:未捕獲的 TypeError:無法讀取 undefined41 的屬性‘getColomnSet’"

                  這個錯誤是什么意思,最可能的原因是什么?

                  What does this error mean and what are the most probable causes?

                  作為參考,這里是我程序的最后幾個命令:

                  For reference, here are the last few commands of my program:

                  try:
                      elem = wait.until(EC.presence_of_element_located((By.ID,'element_1_id')))
                  finally:
                      elem1 = driver.find_element_by_id('element_1_id')
                      elem2 = driver.find_element_by_id('element_2_id')
                      action = ActionChains(driver).move_to_element(elem1).move_to_element(elem2)
                      action.perform()
                      elem2.click()
                  

                  推薦答案

                  這個錯誤信息...

                  An error has occured in 'site url': Uncaught TypeError: Cannot read property 'getColomnSet' of undefined
                  

                  ...暗示您的程序在嘗試下載所需文件時無法讀取屬性getColomnSet.

                  ...implies that your program was unable to read the property getColomnSet while trying to download the desired file.

                  可能,主要問題是在客戶端呈現 js" rel="nofollow noreferrer">HTML DOM 完全.

                  Possibly, the main problem is the js involved to download the document is invoked before the client renders the HTML DOM completely.

                  相關的HTML、更多的之前的代碼行錯誤堆棧跟蹤會讓我們對怎么了.

                  The relevant HTML, a bit more of your previous lines of code and the error stack trace would have given us some more idea about what's going wrong.

                  • 您可以誘導一些措施等到完成 DOM 樹在討論之后呈現:
                    • 檢查頁面是否已在 Selenium 中完全加載的通用函數
                    • 在您的代碼試驗中,我沒有看到您與元素 (By.ID,'element_1_id') 交互,因此您可能可以刪除 presence_of_element_located() 的步驟 對于元素 (By.ID,'element_1_id').
                    • 如果您仍然需要 presence_of_element_located((By.ID,'element_1_id')) 捕獲異常并啟動所需步驟.
                    • 當您在 elem1elem2 上調用 move_to_element() 并繼續調用 perform() 時,您需要用 WebDriverWait.webdriver.support.expected_conditions" rel="nofollow noreferrer">expected_conditions 作為 element_to_be_clickable(locator)
                    • In your code trials I don't see you interacting with the element (By.ID,'element_1_id') so possibly you can remove the step of presence_of_element_located() for the element (By.ID,'element_1_id').
                    • If you still require presence_of_element_located((By.ID,'element_1_id')) catch the exception and initiate required steps.
                    • As you invoke move_to_element() over elem1 and elem2 and moving ahead invoke perform() you need to induce WebDriverWait with expected_conditions as element_to_be_clickable(locator)
                    • 無法使用畫布讀取 null 的屬性getContext"
                    • 未捕獲的類型錯誤:無法讀取未定義的屬性getContext"
                    • 未捕獲的錯誤 remote.js

                    這篇關于“站點 url"中發生錯誤:未捕獲的類型錯誤:無法使用 Selenium 和 Python 讀取未定義的屬性“getColomnSet"的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標頭) - IT屋-程序員軟件開發技術分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                    <bdo id='qQ6XW'></bdo><ul id='qQ6XW'></ul>

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

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

                              <tbody id='qQ6XW'></tbody>
                          • <tfoot id='qQ6XW'></tfoot>
                            <i id='qQ6XW'><tr id='qQ6XW'><dt id='qQ6XW'><q id='qQ6XW'><span id='qQ6XW'><b id='qQ6XW'><form id='qQ6XW'><ins id='qQ6XW'></ins><ul id='qQ6XW'></ul><sub id='qQ6XW'></sub></form><legend id='qQ6XW'></legend><bdo id='qQ6XW'><pre id='qQ6XW'><center id='qQ6XW'></center></pre></bdo></b><th id='qQ6XW'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='qQ6XW'><tfoot id='qQ6XW'></tfoot><dl id='qQ6XW'><fieldset id='qQ6XW'></fieldset></dl></div>
                          • 主站蜘蛛池模板: 欧美日韩综合 | 精品一二区 | 色悠悠久 | 99久久免费精品国产男女高不卡 | 亚洲成人一区 | 久久99精品久久久久久噜噜 | 亚洲国产精品91 | 久久草在线视频 | 亚洲综合国产 | 中文字幕日韩欧美一区二区三区 | 久精品久久 | 午夜精品久久久久久久久久久久久 | 免费看av大片 | 亚洲电影第三页 | 久久麻豆精品 | 亚洲v日韩v综合v精品v | 精品久久一区 | 久久三级av | 欧美精品在线观看 | 亚洲 欧美 日韩 精品 | 91精品国产欧美一区二区 | www..99re| 颜色网站在线观看 | 日韩电影免费在线观看中文字幕 | 国内自拍偷拍 | 国产高清视频 | 日韩中文字幕免费在线观看 | 日本涩涩网 | 精品国产免费人成在线观看 | 久久久久久国产精品免费免费狐狸 | 国产91久久精品一区二区 | 国产福利在线 | 国产一二三视频在线观看 | 欧美理伦片在线播放 | 在线视频一区二区三区 | 激情一区二区三区 | 成人午夜免费福利视频 | 欧美精品在线播放 | 中文字幕乱码一区二区三区 | 人人种亚洲| 久久免费视频网 |