-
-
Notifications
You must be signed in to change notification settings - Fork 0
How to Use ScrapeWeb
ScrapeWeb is a desktop application that helps you extract titles and links from blog-style pages by specifying CSS selectors. It outputs your results in JSON and/or Markdown formats for further use.
Launch the application (ScrapeWeb.exe) from the dist/win-unpacked directory or your extracted portable app.
Paste the URL of the blog or article list page (e.g. https://example.com/blog).
- Right-click the blog post title or link in your browser
- Click "Inspect" (in Chrome, Edge, Firefox, etc.)
- In the Elements tab, hover over the highlighted HTML
- Right-click the element in the DevTools
- Choose: Copy → Copy selector
✅ This gives you something like:
#main-content > div.post > h2.titleYou can paste this into ScrapeWeb’s Title Selector field.
-
You can simplify selectors:
Instead of:
#main-content > div.post > h2.title
Use:
.post-titleorh2.titleif consistent across posts. -
The Link Selector can often just be
a, assuming the title or post container contains a link.
Choose from:
- JSON
- Markdown
- Both
Click Browse to select where the files should be saved.
Click Go Scrape — the app will process the blog page and extract:
- Titles
- Links
- Page metadata (title, description, etc.)
Click See Scrapes to open the folder where files were written.
- Use the Dark Mode button (top-right) to switch themes
- The app remembers your last used theme and URLs
URL: https://www.cm-alliance.com/cybersecurity-blog
-
Title Selector:
.blogv2-postbox-title -
Link Selector:
a
URL: https://www.splunk.com/en_us/blog/author/secmrkt-research.html
-
Title Selector:
.title h4 -
Link Selector:
a
| Issue | Suggestion |
|---|---|
| Nothing is extracted | Double-check your CSS selectors |
| Output file missing | Ensure output folder is selected |
| “Scrape Now” button does nothing | Check console logs or recheck selector formatting |