Skip to main content

Rendered Word Count Mismatch

All the pages with a word count difference between the rendered DOM and the word count in the raw HTML.

Priority: Low

Impact: Neutral

What issues it may causeโ€‹

Successful rendering of the pages may be required for search engines to index the full content of the page, which can take longer than if the content is in the static HTML.

If there are any issues preventing search engines from correctly rendering the pages, the content which is unique to the rendered page may never be indexed.

How do you fix itโ€‹

The pages should be reviewed without JavaScript enabled to determine if the content differences include any valuable content which should be indexed.

What is the positive impactโ€‹

All content on the page can be indexed by search engines more quickly.

How to fetch the data for this report templateโ€‹

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
url
description
foundAtUrl
deeprank
level
renderedWordCountDifference
renderedCanonicalLinkMatch
renderedLinkCountDifference
foundInWebCrawl
foundInSitemap
foundInGoogleSearchConsole
foundInGoogleAnalytics
foundInBacklinks
foundInLogSummary
foundInList
}
}
}
}
}
}

Try in explorer