gpt4 book ai didi

python - 使用 selenium python 单击 svg

转载 作者:行者123 更新时间:2023-12-01 07:34:12 25 4
gpt4 key购买 nike

svg 图标是可点击的。

<div class="some-class">
<svg aria-label="Search" class="some-icon" width="24" height="24" fill="#000" viewBox="0 0 24 24">
<path d="M9.5,...,5 9.5,5Z">
</path>
</svg>
</div>

示例代码:

from selenium import webdriver

driver = webdriver.Chrome(CHROME_DRIVER_LOCATION)
driver.find_element_by_xpath('//*[@id="SearchForm"]/div[1]/span/div[1]/div[2]/svg/path').click()

错误:

no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id="SearchForm"]/div[1]/span/div[1]/div[2]/svg/path"}

最佳答案

要在 svg 图标上click(),您可以使用以下解决方案:

driver.find_element_by_xpath('//div[@class="some-class"]/*[name()="svg"][@aria-label="Search"]').click()

您可以在以下位置找到一些相关讨论:

关于python - 使用 selenium python 单击 svg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57075377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com