我正在尝试与具有以下结构的页面上的按钮进行交互。感兴趣的按钮位于 iframe 主体中的 div 中,该主体位于主体内部。我已经阅读了有关如何切换到 iframe 的所有 StackOverflow 问题 - 正如您在下面看到的那样,我对此没有任何问题。我有一个问题是,无论该建议如何,我都无法与切换到的 iframe 进行交互。目标是单击特定 iframe 内的按钮。
编辑:这个问题似乎与 selenium-wire 库有关。这是完整的代码。
from seleniumwire import webdriver
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager
import time
url = 'https://sahkovertailu.fi/'
options = {
'suppress_connection_errors': False,
'connection_timeout': None# Show full tracebacks for any connection errors
}
chrome_options = Options()
chrome_options.add_argument("--start-maximized")
chrome_options.add_argument('--auto-open-devtools-for-tabs')
chrome_options.add_argument('--log-level=2')
driver = webdriver.Chrome(ChromeDriverManager().install(), seleniumwire_options=options, chrome_options=chrome_options)
if driver.requests is not None:
del driver.requests
driver.get(url)
iframe = driver.find_element_by_xpath("//iframe[contains(@src, 'privacy')]")
driver.switch_to.frame(iframe)
iframeUniqueId = iframe.get_attribute('cd_frame_id_')
print(iframeUniqueId)
time.sleep(2)
button = driver.find_element_by_xpath("//button[contains(., 'OK')]")
button.click()
这是页面布局的示例
<!doctype html>
<html ng-app="someApp" xmlns="http://www.w3.org/1999/html">
<head>
<script>a lot of scripts</script>
</head>
<body class="unwantedBody">
<iframe> some iframes</iframe>
<div> different divs </div>
<main>
some content
<iframe> multiple iframes on different nested levels </iframe>
</main>
<div> more divs </div>
<script> more scripts </script>
<div id='interesting div'>
<iframe src="uniqueString">
<!doctype html>
#document
<html>
<body>
<div>
<button id='bestButton'>
'Nice title'
</button>
</div>
</body>
</html>
</iframe>
</div>
</body>
</html>
使用 Jupyter Notebook 我已经能够找到 iframe 并切换到它。该问题与尝试与 iFrame 交互过快无关,因为我控制了速度。我尝试过使用预期条件并等到 iframe 可以切换到,但这与我的问题无关。
driver.switch_to.default_content # Making sure no other frame is selected
iframe = driver.find_element_by_xpath("//iframe[contains(@src, 'uniqueString')]")
driver.switch_to.frame(iframe)
print(iframe.get_attribute('id'))
上面的代码打印出“interesting div”,所以它成功找到了iframe所在的div,并且显然选择了这个div?当我切换到 iframe 时,网页会发生变化,并且 iframe 会获得一个唯一的 GUID:
<iframe src="uniqueString" cd_frame_id_ = "uniqueGuidThatAlwaysChanges"> ... </iframe>
我可以使用
iframe.get_attribute('cd_frame_id_')
然后我尝试像这样解析 iframe:
bestButton = driver.find_element_by_xpath("//button[@id = 'bestButton']")
bestButton.click()
这给出了错误:
消息:元素不可交互
如果我更换上述驱动程序。使用 iframe.find_element_by_xpath... 我收到以下错误:
消息:没有这样的元素:无法找到元素:{"method":"xpath","selector":"//button[@id="bestButton"]"}
在使用上面的 switch_to.frame(iframe)切换到 iframe 后,我还尝试与 iframe 中的主体进行交互,因此在此示例中,驱动程序已经在 iframe 中:
document = driver.find_element_by_xpath('//html/body')
info = document.get_attribute('class')
print(info)
这打印出来
不需要的身体
所以不知何故,驱动程序没有切换到我指定的 iFrame,而是仍然停留在主 HTML 上。在 chrome 上加载网页时,我可以使用这个 XPath //button[contains(@id='bestButton')] 找到我想要的按钮,但在 Selenium 中它不起作用,因为它被 #document 中的框架。
我错过了什么?如果有帮助,我感兴趣的 iFrame 实际上是一个关于 cookie 同意的模式窗口,我正试图摆脱它以与网站交互。