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

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

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

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

        <tfoot id='VpUXl'></tfoot>

        selenium.common.exceptions.TimeoutException 同時通過 expe

        selenium.common.exceptions.TimeoutException while invoking .click() on an element through expected_conditions(selenium.common.exceptions.TimeoutException 同時通過 expected_conditions 在元素上調用 .click()) - IT屋-程序員軟件開發
        <i id='Ue4HR'><tr id='Ue4HR'><dt id='Ue4HR'><q id='Ue4HR'><span id='Ue4HR'><b id='Ue4HR'><form id='Ue4HR'><ins id='Ue4HR'></ins><ul id='Ue4HR'></ul><sub id='Ue4HR'></sub></form><legend id='Ue4HR'></legend><bdo id='Ue4HR'><pre id='Ue4HR'><center id='Ue4HR'></center></pre></bdo></b><th id='Ue4HR'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Ue4HR'><tfoot id='Ue4HR'></tfoot><dl id='Ue4HR'><fieldset id='Ue4HR'></fieldset></dl></div>
        • <bdo id='Ue4HR'></bdo><ul id='Ue4HR'></ul>
          <legend id='Ue4HR'><style id='Ue4HR'><dir id='Ue4HR'><q id='Ue4HR'></q></dir></style></legend>

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

                <tbody id='Ue4HR'></tbody>

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

                1. 本文介紹了selenium.common.exceptions.TimeoutException 同時通過 expected_conditions 在元素上調用 .click()的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  使用 python、chromedriver 和 Windows.我已經編寫了幾個月的腳本,它定期使用 .click() 函數,幾天前它停止在網站上的任何地方工作.我一直在嘗試通過 id、xpath 等定位元素……甚至通過 send_keys(Keys.ENTER) 單擊它,但沒有成功.我只是想點擊登錄圖標,但沒有任何反應.似乎找到了元素并單擊它,但沒有任何反應.這是

                  -之后應該會出現

                  解決方案

                  根據您分享的 url 點擊鏈接,文本為 Regístrate o inicia sesión您可以使用以下任一

                  Using python, chromedriver and Windows. I've working on a script for some months which uses .click() function regularly, few days ago it stopped working anywhere on the site. I've been trying to locate the element by id, xpath, etc... or even click it by send_keys(Keys.ENTER) with no success. I'm just trying to click the login icon but nothing happens. Seems to find the element and even click it, but nothing happens. This is the site and here the code:

                  browser = webdriver.Chrome(chrome_options=options, executable_path=r'chromedriver.exe')
                  
                  browser.get(('https://es.wallapop.com/'))
                  
                  signInButton = WebDriverWait(browser, 5).until(EC.element_to_be_clickable((By.ID, 'js-show-login-modal')))
                  signInButton.click()
                  
                  signInButton = WebDriverWait(browser, 5).until(EC.element_to_be_clickable((By.ID, 'btn-go-login-form')))
                  signInButton.click()
                  

                  a part from not working this is what I get from the terminal:

                  Traceback (most recent call last):
                    File "wallapop_delete.py", line 55, in <module>
                      signInButton = WebDriverWait(browser, 5).until(EC.element_to_be_clickable((B
                  y.ID, 'btn-go-login-form')))
                    File "C:UserszaicoAppDataLocalProgramsPythonPython36libsite-packages
                  seleniumwebdriversupportwait.py", line 80, in until
                      raise TimeoutException(message, screen, stacktrace)
                  selenium.common.exceptions.TimeoutException: Message:
                  

                  and this is what should happen on the browser:

                  -first click on the icon

                  -and after this should appear

                  解決方案

                  As per the url you have shared to click on the link with text as Regístrate o inicia sesión you can take help of either of the following Locator Strategies:

                  • LINK_TEXT
                  • PARTIAL_LINK_TEXT
                  • CSS_SELECTOR
                  • XPATH

                  Here is the sample code using PARTIAL_LINK_TEXT:

                  # -*- coding: UTF-8 -*-
                  from selenium import webdriver
                  from selenium.webdriver.common.by import By
                  from selenium.webdriver.support.ui import WebDriverWait
                  from selenium.webdriver.support import expected_conditions as EC
                  
                  options = webdriver.ChromeOptions() 
                  options.add_argument("start-maximized")
                  options.add_argument('disable-infobars')
                  browser=webdriver.Chrome(chrome_options=options, executable_path=r'C:UtilityBrowserDriverschromedriver.exe')
                  browser.get("https://es.wallapop.com/")
                  WebDriverWait(browser, 5).until(EC.element_to_be_clickable((By.PARTIAL_LINK_TEXT, 'strate o inicia sesi'))).click()
                  

                  Browser Snapshot:

                  這篇關于selenium.common.exceptions.TimeoutException 同時通過 expected_conditions 在元素上調用 .click()的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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='NZoXF'></tfoot>
                      <tbody id='NZoXF'></tbody>

                      <bdo id='NZoXF'></bdo><ul id='NZoXF'></ul>
                      <legend id='NZoXF'><style id='NZoXF'><dir id='NZoXF'><q id='NZoXF'></q></dir></style></legend>

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

                            <i id='NZoXF'><tr id='NZoXF'><dt id='NZoXF'><q id='NZoXF'><span id='NZoXF'><b id='NZoXF'><form id='NZoXF'><ins id='NZoXF'></ins><ul id='NZoXF'></ul><sub id='NZoXF'></sub></form><legend id='NZoXF'></legend><bdo id='NZoXF'><pre id='NZoXF'><center id='NZoXF'></center></pre></bdo></b><th id='NZoXF'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='NZoXF'><tfoot id='NZoXF'></tfoot><dl id='NZoXF'><fieldset id='NZoXF'></fieldset></dl></div>
                            主站蜘蛛池模板: av电影手机版 | 天堂成人国产精品一区 | h在线 | 亚洲国产精品久久久 | 成人一级片在线观看 | 二区精品 | 精品日韩在线观看 | 91精品在线播放 | 精品久久香蕉国产线看观看亚洲 | 一区二区三区免费 | 不卡一区二区三区四区 | 一区精品在线观看 | 日韩国产中文字幕 | 久久99精品国产麻豆婷婷 | aaaaaaa片毛片免费观看 | 中文字幕精品视频 | 黄色一级大片在线免费看产 | 极品的亚洲 | 午夜电影网 | 欧美大片一区 | 欧美日韩精品综合 | 中日av| 久久成人精品视频 | 久久曰视频 | 国产色网站 | 国产露脸对白88av | 欧美网站一区二区 | 国产日韩精品久久 | 毛片一区二区三区 | av网站免费在线观看 | 日本五月婷婷 | 亚洲国产成人av好男人在线观看 | 黑人久久| 欧美色综合一区二区三区 | 国产精品久久久久久久久久三级 | 亚洲免费人成在线视频观看 | 黄网站涩免费蜜桃网站 | 成人久久网| 日韩专区中文字幕 | www.三级 | 亚洲视频观看 |