Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add chosen not indexed coverage info #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,13 @@ const friendlySiteName = (str) => {
var rawArray = Array.from(document.querySelectorAll('script[nonce]'), (el) => el.text);
var ruleNotIndexed = 'ds:11';
var ruleWarning = 'ds:13';
var ruleCheckNotIndexed = 'ds:10';

// Isolate the right script that match rules
var notIndexed = rawArray.filter((s) => s.includes(ruleNotIndexed))[1];
var warning = rawArray.filter((s) => s.includes(ruleWarning))[1];
var script = notIndexed.concat(warning);
var checkNotIndexed = rawArray.filter((s) => s.includes(ruleCheckNotIndexed))[1];
var script = notIndexed.concat(warning).concat(checkNotIndexed);
console.log(script);

// Match Report IDs
Expand Down Expand Up @@ -464,15 +466,6 @@ const friendlySiteName = (str) => {
}
}
}
// Add indexed summary tab if there was data fro more than 1 property
if (indexedSum) {
createExcelTab(indexedSum, workbook, `Indexed_summary_ALL`);

// Add summary tab at the beginning
let tabs = workbook.worksheets;
let last = tabs.length - 1;
tabs[last].orderNo = 0;
}
// Close Browser
await browser.close();

Expand Down