https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator尝试从下拉菜单中选择选项
我尝试了:
driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div/div/div/section[2]/div/div[1]/div/div[2]/div/div/div/div[1]').click()
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"/html/body/div[1]/div[1]/div[1]/div/div/div/section[2]/div/div[1]/div/div[2]/div/div/div/div[1]"}
2条答案
按热度按时间9q78igpj1#
因此,虽然您的xpath是正确的,但您给出的初始URL正在生成您希望在iframe内部与之交互的网页,您可以遵循here中的建议。
然而,由于我们知道iframe生成源代码的链接,您可以只加载源代码页面,即:
而不是加载问题中包含的原始链接。
dgiusagp2#
下拉列表在一个iframe中,你必须切换到该iframe,然后你需要从下拉列表中选择一个选项,尝试以下代码: