作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试从“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/
我是一名优秀的程序员,十分优秀!