MuzaMeduza
New Member
- Joined
- Dec 3, 2017
- Messages
- 1
Hello,
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" within the table 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:
But I want to get this URL only (without opening new tab).
I was trying to something like this, but it doesn’t work:
Can anybody help me with it?
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" within the table 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:
Code:
IE.Document.getelementbyID("ctl00_ContentPlaceHolder1_ASPxGridView1_DXCBtn0").Click
I was trying to something like this, but it doesn’t work:
Code:
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?