gpt4 book ai didi

c# - 如何从 Selenium 中的 href 链接获取属性值

转载 作者:太空狗 更新时间:2023-10-29 17:39:04 24 4
gpt4 key购买 nike

我正在尝试从“href”属性获取链接:

<a href="http://fgkzc.downloader.info/download.php?id=bc56585624bbaf29ebdd65d0248cb620" rel="nofollow" class="dl_link 1" style="">Download</a>

我在做什么:

ReadOnlyCollection<IWebElement> lists1 = driver.FindElements(By.ClassName("dl_link"));

string s = lists1[0].GetAttribute("a href");

我正在获取类为“dl_link 1”的元素,但无法获取其链接;字符串为空。

最佳答案

您需要使用实际的属性名称调用 GetAttribute()。替换:

lists1[0].GetAttribute("a href");

与:

lists1[0].GetAttribute("href");

关于c# - 如何从 Selenium 中的 href 链接获取属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32620309/

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