I scrap Data from Autodesk Forums , Then i need to extract the URL then its not Scraping the Hyperlink of the particular field in Autodesk Website , i Need to know how to scrape the Data with Hyperlink URL by using Data scraping
is it possible to share the workflow?
Main.xaml (9.9 KB)
Hey @krishnakanth_sarma
These are the url only.
You need to manually add the front part i.e “https://forums.autodesk.com”
![]()
Is there anyway to get the hyperlink ? or we need to add manually? in Data scraping
manual add.
because it retrieves the href tag from html code which starts from “/t5…” like that.
You can easily add the YourBaseURL to all URL with Invoke Code Activity:
ExtractDataTable.columns.Add("FullURL", System.Type.GetType("System.String"), "'YourBaseURL' + URL")
1 Like
Here is a working example.
test-forum-links.xaml (9,9 KB)
It is tested and works, but the extraction before does not give result, the data table is null, please fix it with the one you want to use.




