<p class="URL-List">
Download :
<a href="https://exampleAA.com"><strong>AA</strong></a> /
<a href="https://exampleBB.com"><strong>BB</strong></a> /
<a href="https://exampleCC.com"><strong>CC</strong></a>
</p>
My Code
AA = URL[0].getElementsByTagName("a")
AA[0]
I will get the first URL:
But the list changes
<p class="URL-List">
Download :
<a href="https://exampleCC.com"><strong>CC</strong></a> /
<a href="https://exampleDD.com"><strong>DD</strong></a> /
<a href="https://exampleSS.com"><strong>SS</strong></a> /
<a href="https://exampleAA.com"><strong>AA</strong></a> /
<a href="https://exampleFF.com"><strong>FF</strong></a> /
<a href="https://exampleBB.com"><strong>BB</strong></a>
</p>
My Code
AA = URL[0].getElementsByTagName("a")
AA[0]
Now I get: `
` But I want
How can I find that specific URL?