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

    <legend id='8I2Q6'><style id='8I2Q6'><dir id='8I2Q6'><q id='8I2Q6'></q></dir></style></legend>

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

      <small id='8I2Q6'></small><noframes id='8I2Q6'>

    1. selenium.common.exceptions.ElementNotVisibleException:消息:元

      selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable using Selenium(selenium.common.exceptions.ElementNotVisibleException:消息:元素無法使用 Selenium 進行交互) - IT屋-程序員軟件開發技術分
            <tfoot id='SoRm9'></tfoot>

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

              <tbody id='SoRm9'></tbody>

            <i id='SoRm9'><tr id='SoRm9'><dt id='SoRm9'><q id='SoRm9'><span id='SoRm9'><b id='SoRm9'><form id='SoRm9'><ins id='SoRm9'></ins><ul id='SoRm9'></ul><sub id='SoRm9'></sub></form><legend id='SoRm9'></legend><bdo id='SoRm9'><pre id='SoRm9'><center id='SoRm9'></center></pre></bdo></b><th id='SoRm9'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='SoRm9'><tfoot id='SoRm9'></tfoot><dl id='SoRm9'><fieldset id='SoRm9'></fieldset></dl></div>
              <bdo id='SoRm9'></bdo><ul id='SoRm9'></ul>
                <legend id='SoRm9'><style id='SoRm9'><dir id='SoRm9'><q id='SoRm9'></q></dir></style></legend>
                本文介紹了selenium.common.exceptions.ElementNotVisibleException:消息:元素無法使用 Selenium 進行交互的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我正在尋找一個有趣的程序,但我對 selenium 有一些問題,我需要一些幫助...這是程序(我刪除了webdriver的目錄,因為文件夾的名稱包含其他人的名字)

                I am searching to do a program for fun but i have some problems with selenium and i need some help... This is the programm (i deleted the directory of webdriver because the folder's name contain the name of an other person)

                from selenium import webdriver
                import webbrowser
                import time
                
                
                def Pass_send_():
                    driver=webdriver.Chrome()
                    driver.get('chrome://flags/#password_export-enable')
                
                
                    ricerca=driver.find_element_by_id("search")
                    ricerca.send_keys('password export')
                    scorritore=driver.find_element_by_class_name('experiment-select')
                    scorritore.click()
                
                
                
                Pass_send_()
                

                所以它的目的很簡單,它應該打開一個窗口,輸入一個文本并單擊一個按鈕.一切正常,但點擊沒有,這是錯誤:

                And so the purpose it's easy, it should open a windows, type a text and click a button. everything works but the click doesn't and this is the error:

                Traceback (most recent call last):
                      File "C:Python34internet22.py", line 18, in <module>
                Pass_send_()
                  File "C:Python34internet22.py", line 14, in Pass_send_
                scorritore.click()
                  File "C:Python34libsite- 
                   packagesseleniumwebdriver
                emotewebelement.py", line 80, in click
                    self._execute(Command.CLICK_ELEMENT)
                  File "C:Python34libsite- 
                packagesseleniumwebdriver
                emotewebelement.py", line 633, in _execute
                    return self._parent.execute(command, params)
                  File "C:Python34libsite- 
                packagesseleniumwebdriver
                emotewebdriver.py", line 321, in execute
                    self.error_handler.check_response(response)
                  File "C:Python34libsite- 
                packagesseleniumwebdriver
                emoteerrorhandler.py", line 242, in 
                check_response
                    raise exception_class(message, screen, stacktrace)
                selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable
                

                所以我不是專家,但它說:元素不可交互?這是什么意思,我該如何解決?非常感謝您的回復...

                So i am not an expert but it says: element not intercatable? what does it mean and how can i fix it? i would really appreciate a reply...

                推薦答案

                發送一個字符序列到網頁中的搜索框 chrome://flags/#password_export-enable 需要誘導WebDriverWait,可以使用如下解決方案:

                To send a character sequence to the search box within the webpage chrome://flags/#password_export-enable you need to induce WebDriverWait and you can use the following solution:

                • 代碼塊:

                • Code Block:

                from selenium import webdriver
                from selenium.webdriver.chrome.options import Options
                from selenium.webdriver.support.ui import WebDriverWait
                from selenium.webdriver.common.by import By
                from selenium.webdriver.support import expected_conditions as EC
                
                options = Options()
                options.add_argument('start-maximized')
                options.add_argument('disable-infobars')
                options.add_argument('--disable-extensions')
                driver = webdriver.Chrome(chrome_options=options, executable_path=r'C:WebDriverschromedriver.exe')
                driver.get('chrome://flags/#password_export-enable')
                WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "input#search"))).send_keys("password export")
                

              • 瀏覽器快照:

              • Browser Snapshot:

                這篇關于selenium.common.exceptions.ElementNotVisibleException:消息:元素無法使用 Selenium 進行交互的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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 - 自動更改角色顏色)
                  <tbody id='hzoKT'></tbody>
                <legend id='hzoKT'><style id='hzoKT'><dir id='hzoKT'><q id='hzoKT'></q></dir></style></legend>

              • <tfoot id='hzoKT'></tfoot>

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

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

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

                        1. 主站蜘蛛池模板: 亚洲欧洲在线看 | 超碰在线影院 | 欧美老少妇一级特黄一片 | 成人在线免费电影 | 久久精品国产久精国产 | 国产午夜精品一区二区 | 精品久久久久久久久久久久久久 | 国产一区二区电影网 | 成人国产精品久久久 | 免费在线黄 | 日韩精品在线看 | 久热国产精品 | 一区二区在线看 | 精品在线一区二区 | 亚洲国产aⅴ成人精品无吗 国产精品永久在线观看 | 国内av在线| 欧美日一区二区 | 欧美精品一二三区 | 中文字幕成人 | 色婷婷亚洲国产女人的天堂 | 夜夜操天天干 | 五月精品视频 | 免费一区二区三区 | 国产高清久久久 | 国产精品日产欧美久久久久 | 亚卅毛片 | 久久久久久久久久久久一区二区 | 青娱乐国产 | 国产精品免费观看视频 | 亚洲成网站 | 亚洲精品乱 | 国产精品永久免费 | 成人精品国产免费网站 | 一区二区三区欧美在线 | 亚洲一区| 国产精品久久精品 | 久久久久国产一区二区三区四区 | 99草免费视频 | 精品视频国产 | 国产精品一区二区在线 | 欧美日韩在线精品 |