We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b788a3 commit 0c32b99Copy full SHA for 0c32b99
src/lib/utils.ts
@@ -886,6 +886,7 @@ export async function startSSEListener(ctx: Context) {
886
if (lines.length < 1 ) {
887
return;
888
}
889
+ ctx.log.debug(`CSSReport: ${JSON.stringify(lines)}`);
890
ctx.log.info(chalk.green(lines[0]));
891
892
let isWarningSection = false;
@@ -1069,7 +1070,7 @@ export async function validateCSSSelectors(
1069
1070
1071
1072
try {
-
1073
+ logger.debug(`selector to validate: ${baseSelector}`);
1074
const elementExists = await page.evaluate(({ selectorValue }: { selectorValue: string }) => {
1075
1076
const elements = document.querySelectorAll(selectorValue);
0 commit comments