如何使用 python 处理 selenium 中嵌套 iframe 中的 cookie 接受按钮?
Posted
技术标签:
【中文标题】如何使用 python 处理 selenium 中嵌套 iframe 中的 cookie 接受按钮?【英文标题】:How do I handle cookie accept button within nested iframes in selenium with python? 【发布时间】:2022-01-19 18:49:06 【问题描述】:我几乎尝试了所有方法并在 SO 上进行了搜索,但无法通过 gmx.com 上的 cookie 接受。希望有人能帮忙。到目前为止,我已经尝试过:
driver = webdriver.Chrome(CHROMEPATH)
driver.get('https://www.gmx.com')
time.sleep(5)
cookie_accept = WebDriverWait(driver, 30).until(EC.element_to_be_clickable((By.XPATH, '//button[@id="onetrust-accept-btn-handler"]')))
cookie_accept.click()
===AND===
driver = webdriver.Chrome(CHROMEPATH)
driver.get('https://www.gmx.com')
wait = WebDriverWait(driver, 15)
wait.until(EC.element_to_be_clickable(
(By.CSS_SELECTOR, "div[style='onetrust-style'] button[id*='onetrust-accept-btn-handler']")))
driver.find_element_by_css_selector("div[style='onetrust-style'] button[id*='onetrust-accept-btn-handler']").click()
time.sleep(10)
driver.quit()
我做错了什么?!非常感谢任何帮助!
【问题讨论】:
【参考方案1】:元素 同意并继续 位于嵌套的 元素中,因此您必须:
诱导WebDriverWait 父 框架可用并切换到它。
诱导 WebDriverWait 使 child 框架可用并切换到它。
诱导WebDriverWait 使所需的元素可点击。
您可以使用以下任一Locator Strategies:
使用CSS_SELECTOR:
driver.get("https://www.gmx.com/consentpage")
WebDriverWait(driver, 20).until(EC.frame_to_be_available_and_switch_to_it((By.CSS_SELECTOR,"iframe.permission-core-iframe")))
WebDriverWait(driver, 20).until(EC.frame_to_be_available_and_switch_to_it((By.CSS_SELECTOR,"iframe[src^='https://plus.gmx.com/lt']")))
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "button#onetrust-accept-btn-handler"))).click()
使用XPATH:
driver.get("https://www.gmx.com/consentpage")
WebDriverWait(driver, 20).until(EC.frame_to_be_available_and_switch_to_it((By.XPATH,"//iframe[@class='permission-core-iframe']")))
WebDriverWait(driver, 20).until(EC.frame_to_be_available_and_switch_to_it((By.XPATH,"//iframe[starts-with(@src, 'https://plus.gmx.com/lt')]")))
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//button[@id='onetrust-accept-btn-handler']"))).click()
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
浏览器快照:
参考
您可以在以下位置找到一些相关讨论:
Ways to deal with #document under iframe Switch to an iframe through Selenium and python selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element while trying to click Next button with selenium selenium in python : NoSuchElementException: Message: no such element: Unable to locate element【讨论】:
你应该只定义一个wait
对象一次,而不是3次。
非常感谢您
@Prophet 你应该只定义一个等待对象,而不是 3 次:你来自哪里?有任何文件可以支持您的评论吗?为什么要实现GC机制?
@DebanjanB 我不知道有关此的官方文档。我只知道我写了一个这样的答案,其中有几个等待对象的初始化,而其他一些用户相当写信告诉我这不是正确的方法。在我看来这在逻辑上也是正确的【参考方案2】:
此元素位于 iframe 内。 iframe 内的 iframe。因此,您必须切换到内部 iframe 才能访问该元素。 像这样的:
driver.get("https://www.gmx.com/consentpage")
wait = WebDriverWait(driver, 20)
wait.until(EC.frame_to_be_available_and_switch_to_it((By.CSS_SELECTOR,"iframe.permission-core-iframe")))
wait.until(EC.frame_to_be_available_and_switch_to_it((By.XPATH,"//iframe[contains(@src,'plus')]")))
wait.until(EC.visibility_of_element_located((By.XPATH, '//button[@id="onetrust-accept-btn-handler"]'))).click()
【讨论】:
以上是关于如何使用 python 处理 selenium 中嵌套 iframe 中的 cookie 接受按钮?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Python / Selenium webdriver 处理 Angularjs / Javascript 下拉列表?
如何使用Selenium和Python在网站内的页面中导航?