I have a trouble with getting URL from the website:
https://searchbzp.uzp.gov.pl/Search.aspx
On this website there is a table.
The text 'Zobacz' is a hyperlink and from this place I want to get URL.
I can click on this url using below code, and then browser trying to open new tab:
IE.Document.getelementbyID("ctl00_ContentPlaceHolder1_ASPxGridView1_DXCBtn0").Click
But I want to get this URL only (without opening new tab). I was trying to something like this, but it doesn’t work:
Dim a
a = IE.Document.parentWindow.ExecScript("javascript:ctl00_ContentPlaceHolder1_ASPxGridView1_DXCBtn0", "JavaScript")
MsgBox a
a = IE.Document.parentWindow.ExecScript(IE.Document.getElementById("ctl00_ContentPlaceHolder1_ASPxGridView1_DXCBtn0").href, "JavaScript")
MsgBox a
Can anybody help me with it?