Methodology: This check follows wSEO methodology 1.0. How the assessment works

Check click outcome and HTML role

Find fake links and infinite URL spaces

Start with keyboard and browser checks: real navigation needs an address, while an action needs an appropriate button. Then crawl to see whether filters, calendars and parameters generate unbounded combinations.

A check compares the HTML element, click result and generated URL
Useful evidence includes the element, purpose, actual behaviour and recurrence scale.

Simple check

  1. Tab through the page and note every interactive element.
  2. For each, determine whether it opens an address or changes current-page state.
  3. Use Inspect to review tag, href, type, name and ARIA state.
  4. Activate with mouse and keyboard and save the resulting URL or interface change.
  5. Repeat on an adjacent page to determine whether the issue is template-wide.

How to classify a finding

Clickable-element issue levels
SituationLevelAction
A link opens useful content and a button performs an actionNormalCheck accessible name and focus.
href="#" or javascript: opens interface stateSemantic errorUse a button.
A filter generates many low-value duplicate URLsCrawl issueControl URL space.
Useful content is reachable only through a JS actionAccess lostRestore a normal link.
tel:, mailto: or useful PDFNot automatically wrongReview purpose and label.

Technical check

[...document.querySelectorAll('a, button')].map(el => ({
  tag: el.tagName, text: el.textContent.trim(),
  href: el.getAttribute('href'), type: el.getAttribute('type')
}));

Use a crawler separately to compare unique parameter URL counts by template. One example does not prove an infinite space.

Discrepancies and scope

JavaScript may replace the DOM after load, while a non-rendering crawler sees different markup. Inspect both source and rendered HTML. nofollow alone does not repair the wrong element or guarantee that crawling stops.

Any automated price applies only to templates on the service page. Follow the step-by-step guide for changes.