April 17, 2026
You can now define your own trackers in Blitapp and use them in any capture – no support request needed. Custom trackers are shared with everyone on your team automatically.
A tracker extracts a value from a page when a capture runs and stores it in your history. You can see how the value changes over time on the Trackers history page. Blitapp already ships with built-in trackers for Amazon, Google search rank, YouTube, X (Twitter), and more.
Until today, adding a tracker for a page Blitapp didn’t support meant contacting us. Now you can create one yourself in a minute.
string or number. Numeric values are plotted on the history chart.<input> in your selector or value expression.Say you want to track the headline price on a product page that displays it inside <span class="product-price">$49.99</span>:
my_product_priceMy Product Pricespan.product-pricedocument.querySelector('span.product-price').textContent.replace(/[^0-9.]/g, '')
numberThe value expression strips the currency symbol so the result is a clean number that can be charted.
If the same tracker should work across many pages and needs a parameter – say the CSS selector to pull the value from – check Requires input and use <input> as a placeholder:
document.querySelector('<input>').textContent.trim()
Element selectorWhen you add this tracker to a capture, you’ll be prompted to enter the selector for that particular URL.
Open or create a capture. The tracker dropdown now has two groups:
Your new tracker shows up in the second group. Select it, supply an input if required, and save. From the next run onward, your tracker runs on every capture and its value appears in the Trackers history page.
Custom trackers are team-wide by default – every team member sees them in the picker and can use them. Only the creator can edit or delete a tracker. Teammates with the WriteAll role can edit or delete trackers created by others (useful for team admins maintaining a shared library).
You can manage roles from the Team page.
css-1a2b3c) change between deploys. Look for data- attributes, semantic tags, or ARIA labels instead.Happy tracking.