i am try to parse a link which is hidden in herf = javascript:void(0)
and get link button is disable class="btn btn-success btn-lg get-link disabled"
. after some second link is appear <a href="http://googledrivedirectlink.xyz/download.php?id=QllDSWJsSGV1M3RRd0c3N1o0QmVWdUpoZVdJUjZ4ZE9iWkx6ZHgvZllmNlc=" class="btn btn-success btn-lg get-link">Get Link</a>
. how i can solve this how i can use Selenium for parse href link
i have already tried it with BeautifulSoup but its not working nothing show its say
<a href="javascript: void(0)" class="btn btn-success btn-lg get-link disabled">
Please wait...
</a>
how i can resolve it
here is my code
import requests
from bs4 import BeautifulSoup
url=requests.get('http://linkblend.icu/p8AzvIvi').text
soup=BeautifulSoup(url,'html.parser')
soup.findAll('a')
Here is my code output
<a href="javascript: void(0)" class="btn btn-success btn-lg get-link disabled">
Please wait...
</a>