我想在html路径中获得链接,代码在这里:
<div class="btn btn-primary btn-lg">
<a href="https://storage.googleapis.com/audiog-204018.appspot.com/files/hello1574358335.mp3">
Download MP3 </a>
</div>
我如何获得与硒的链接
答案 0 :(得分:1)
在Python Selenium中,您可以简单地使用element.get_attribute()
所以在您的情况下,应该只是
element.get_attribute("href")