@Ingrid if you can't get what you want out of the built-in
Visits Web Page trigger, you can trigger a Munchkin
Clicked Link event when they're on one of your interesting pages.
For example (off the top of my head):
if ( document.location.href.search(/infographic[^s]/i) !== -1 )
{
Munchkin.munchkinFunction('clickLink', { href: '/visited-infographic-page' })
}
This checks the current URL for a specific match on infographic (must be without the "s") and then calls clickLink if it finds one. Then your SC triggers on Clicked Link = '/visited-infographic-page'.
You can think of clickLink as sort of a browser-side hint about an Interesting Moment if you can't capture it using other means.