Extract Links from Website
Only 3 following steps you can follow to extract all links/URL from any website.
1. Use Google Chrome to open a website
2. Use Command
Alt+command+i
or
click Right button and select Untersuchen / Examine, there will be a box at right side of this page. Go to Console and use this code to get links of this website.
3. Use the code to have the all links:
urls = $$('a'); for (url in urls) console.log (urls[url].href);
Afterward you can get all possible links of this website andnd you can just copy the all links if you want.
No comments:
Post a Comment