Is there a way to extract all hrefs(links) located in anchor tags using JavaScript code with Selenium Python, especially when these links are dynamically updated? The tag I am trying to click on is as follows: enter image description here
I have managed to retrieve all the anchor tags within the webpage, but for the specific anchor tag mentioned above, the output looks like this:
javascript:selectItem('/7000/7020.aspx?reqID=' + ContentPH_hidReqID.getValue() + '&wf=0' + addUrlText() + '#ContentPH_tabReq:ContentPH_pnlCandidates')
If anyone could provide guidance on how to locate and extract these particular types of links from a webpage using Selenium Python, it would be greatly appreciated.
Thank you in advance, himabindu y